Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1046)

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8DebuggerAgent.h

Issue 1738073002: DevTools: introduce protocol::Value, baseline for hierarchical data in remote debugging protocol. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;

Powered by Google App Engine
This is Rietveld 408576698