| Index: Source/core/inspector/ScriptDebugListener.h
|
| diff --git a/Source/core/inspector/ScriptDebugListener.h b/Source/core/inspector/ScriptDebugListener.h
|
| index 6153c7c7730d95f62098132ec39378d85c12ec31..1aac99d7cddfc26d671f0d9536f18c7bb47451b0 100644
|
| --- a/Source/core/inspector/ScriptDebugListener.h
|
| +++ b/Source/core/inspector/ScriptDebugListener.h
|
| @@ -37,6 +37,8 @@
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace WebCore {
|
| +
|
| +class ExecutionContext;
|
| class ScriptValue;
|
|
|
| class ScriptDebugListener {
|
| @@ -75,6 +77,7 @@ public:
|
| virtual void failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage) = 0;
|
| virtual SkipPauseRequest didPause(ScriptState*, const ScriptValue& callFrames, const ScriptValue& exception, const Vector<String>& hitBreakpoints) = 0;
|
| virtual void didContinue() = 0;
|
| + virtual void didReceiveV8AsyncTaskEvent(ExecutionContext*, const String& eventType, const String& eventName, int id) = 0;
|
| };
|
|
|
| } // namespace WebCore
|
|
|