| Index: Source/bindings/v8/V8ErrorHandler.h
|
| diff --git a/Source/bindings/v8/V8ErrorHandler.h b/Source/bindings/v8/V8ErrorHandler.h
|
| index 90fdf5f81a0954f2b17f6f9303c9f7c115f792fb..20ccfdd078f7ee6dfa7a4cde832dcffb0137bd2f 100644
|
| --- a/Source/bindings/v8/V8ErrorHandler.h
|
| +++ b/Source/bindings/v8/V8ErrorHandler.h
|
| @@ -37,6 +37,9 @@
|
|
|
| namespace WebCore {
|
|
|
| +class ErrorEvent;
|
| +class Frame;
|
| +
|
| class V8ErrorHandler : public V8EventListener {
|
| public:
|
| static PassRefPtr<V8ErrorHandler> create(v8::Local<v8::Object> listener, bool isInline)
|
| @@ -44,6 +47,8 @@ public:
|
| return adoptRef(new V8ErrorHandler(listener, isInline));
|
| }
|
|
|
| + static void storeExceptionOnErrorEventWrapper(ScriptExecutionContext*, ErrorEvent*, v8::Handle<v8::Value>, v8::Isolate*);
|
| +
|
| private:
|
| V8ErrorHandler(v8::Local<v8::Object> listener, bool isInline);
|
|
|
|
|