| Index: third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h
|
| diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h
|
| index f957e4a1133b58329feb7656351771c422dc7ac2..573a8b6ceb2b1b534b9bcfb29ba5b550eba9271d 100644
|
| --- a/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h
|
| +++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h
|
| @@ -21,11 +21,11 @@ public:
|
| virtual ~V8DebuggerAgent() { }
|
|
|
| // API for the embedder to report native activities.
|
| - virtual void schedulePauseOnNextStatement(const String& breakReason, PassRefPtr<JSONObject> data) = 0;
|
| + virtual void schedulePauseOnNextStatement(const String& breakReason, PassRefPtr<protocol::DictionaryValue> data) = 0;
|
| virtual void cancelPauseOnNextStatement() = 0;
|
| virtual bool canBreakProgram() = 0;
|
| - virtual void breakProgram(const String& breakReason, PassRefPtr<JSONObject> data) = 0;
|
| - virtual void breakProgramOnException(const String& breakReason, PassRefPtr<JSONObject> data) = 0;
|
| + virtual void breakProgram(const String& breakReason, PassRefPtr<protocol::DictionaryValue> data) = 0;
|
| + virtual void breakProgramOnException(const String& breakReason, PassRefPtr<protocol::DictionaryValue> data) = 0;
|
| virtual void willExecuteScript(int scriptId) = 0;
|
| virtual void didExecuteScript() = 0;
|
| virtual void reset() = 0;
|
|
|