diff options
Diffstat (limited to 'Source/WebCore/bridge/jni/v8/JavaInstanceV8.h')
-rw-r--r-- | Source/WebCore/bridge/jni/v8/JavaInstanceV8.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/WebCore/bridge/jni/v8/JavaInstanceV8.h b/Source/WebCore/bridge/jni/v8/JavaInstanceV8.h index 7436de7..5a1960a 100644 --- a/Source/WebCore/bridge/jni/v8/JavaInstanceV8.h +++ b/Source/WebCore/bridge/jni/v8/JavaInstanceV8.h @@ -49,7 +49,9 @@ public: virtual JavaClass* getClass() const = 0; // args must be an array of length greater than or equal to the number of // arguments expected by the method. - virtual JavaValue invokeMethod(const JavaMethod*, JavaValue* args) = 0; +// ANDROID + virtual JavaValue invokeMethod(const JavaMethod*, JavaValue* args, bool& didRaiseUncaughtException) = 0; +// END ANDROID virtual JavaValue getField(const JavaField*) = 0; // These functions are called before and after the main entry points into |