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

Unified Diff: third_party/WebKit/Source/web/InspectorOverlay.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/web/InspectorOverlay.h
diff --git a/third_party/WebKit/Source/web/InspectorOverlay.h b/third_party/WebKit/Source/web/InspectorOverlay.h
index 802f4b8dd480bf7cff230743eedd08ea1752f794..c16af67f6ce2766a2b4acad761fcdd12d6de254a 100644
--- a/third_party/WebKit/Source/web/InspectorOverlay.h
+++ b/third_party/WebKit/Source/web/InspectorOverlay.h
@@ -53,13 +53,16 @@ class GraphicsContext;
class GraphicsLayer;
class InspectorCSSAgent;
class InspectorDebuggerAgent;
-class JSONValue;
class LayoutEditor;
class Node;
class Page;
class PageOverlay;
class WebViewImpl;
+namespace protocol {
+class Value;
+}
+
class InspectorOverlay final
: public NoBaseWillBeGarbageCollectedFinalized<InspectorOverlay>
, public InspectorDOMAgent::Client
@@ -127,7 +130,7 @@ private:
LocalFrame* overlayMainFrame();
void reset(const IntSize& viewportSize, const IntPoint& documentScrollOffset);
void evaluateInOverlay(const String& method, const String& argument);
- void evaluateInOverlay(const String& method, PassRefPtr<JSONValue> argument);
+ void evaluateInOverlay(const String& method, PassRefPtr<protocol::Value> argument);
void onTimer(Timer<InspectorOverlay>*);
void rebuildOverlayPage();
void invalidate();

Powered by Google App Engine
This is Rietveld 408576698