backing out e45688c8531c because it broke the build

This commit is contained in:
Brad Lassey
2012-02-18 14:21:48 -05:00
parent 640e642b7d
commit 593992e903
8 changed files with 3 additions and 522 deletions

View File

@@ -56,8 +56,6 @@
#endif
#endif
struct ANativeWindow;
namespace mozilla {
class AndroidGeckoGLLayerClient;
@@ -155,23 +153,6 @@ protected:
static jfieldID jTopField;
};
class AndroidSurfaceView : public WrappedJavaObject {
public:
static void InitSurfaceViewClass(JNIEnv *jEnv);
AndroidSurfaceView() {}
AndroidSurfaceView(JNIEnv *jEnv, jobject jobj) {
Init(jEnv, jobj);
}
void Init(JNIEnv *jEnv, jobject jobj);
ANativeWindow* GetNativeWindow();
private:
static jclass jSurfaceViewClass;
static jfieldID jNativeSurfaceField;
};
class AndroidGeckoLayerClient : public WrappedJavaObject {
public:
static void InitGeckoLayerClientClass(JNIEnv *jEnv);
@@ -267,8 +248,6 @@ public:
void CreateFrame(AndroidLayerRendererFrame& aFrame);
void ActivateProgram();
void DeactivateProgram();
void CreateSurfaceViewForBackingSurface(AndroidSurfaceView& aSurfaceView, int aWidth,
int aHeight);
private:
static jclass jGeckoGLLayerClientClass;
@@ -276,7 +255,6 @@ private:
static jmethodID jCreateFrameMethod;
static jmethodID jActivateProgramMethod;
static jmethodID jDeactivateProgramMethod;
static jmethodID jCreateSurfaceViewForBackingSurfaceMethod;
AndroidGeckoGLLayerClientViewTransformGetter mViewTransformGetter;
};