Bug 851180 - Ensure AndroidGeckoEvent::mAckNeeded is always initialized. r=gbrown

This commit is contained in:
Kartikaya Gupta
2013-03-14 21:19:24 +01:00
parent 57b8b89807
commit f79be84fd2
2 changed files with 4 additions and 12 deletions

View File

@@ -593,16 +593,12 @@ class AndroidGeckoEvent : public WrappedJavaObject
public:
static void InitGeckoEventClass(JNIEnv *jEnv);
AndroidGeckoEvent() { }
AndroidGeckoEvent(int aType) {
Init(aType);
}
AndroidGeckoEvent(int aType, int aAction) {
Init(aType, aAction);
}
AndroidGeckoEvent(int x1, int y1, int x2, int y2) {
Init(x1, y1, x2, y2);
}
AndroidGeckoEvent(int aType, const nsIntRect &aRect) {
Init(aType, aRect);
}
@@ -616,7 +612,6 @@ public:
void Init(JNIEnv *jenv, jobject jobj);
void Init(int aType);
void Init(int aType, int aAction);
void Init(int x1, int y1, int x2, int y2);
void Init(int aType, const nsIntRect &aRect);
void Init(AndroidGeckoEvent *aResizeEvent);