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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.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/V8Debugger.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h
index 691679f3cf5e7ac6749d793f088622c3afd5fc8a..7ec63691466072e7aa0f80c40795e44c318d712d 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8Debugger.h
@@ -14,17 +14,20 @@
namespace blink {
-class JSONObject;
class V8DebuggerClient;
class V8StackTrace;
+namespace protocol {
+class DictionaryValue;
+}
+
class PLATFORM_EXPORT V8Debugger {
USING_FAST_MALLOC(V8Debugger);
public:
template <typename T>
class Agent {
public:
- virtual void setInspectorState(PassRefPtr<JSONObject>) = 0;
+ virtual void setInspectorState(PassRefPtr<protocol::DictionaryValue>) = 0;
virtual void setFrontend(T*) = 0;
virtual void clearFrontend() = 0;
virtual void restore() = 0;

Powered by Google App Engine
This is Rietveld 408576698