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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/V8ProfilerAgent.h

Issue 1621923002: [DevTools] Remove InspectorState. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review comments Created 4 years, 11 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/core/inspector/v8/V8ProfilerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8ProfilerAgent.h b/third_party/WebKit/Source/core/inspector/v8/V8ProfilerAgent.h
index 6e375f98da4895aa8443cd527ec9432341e8d2f3..b4c619ff593769ad20b9df6536faa920c76ed677 100644
--- a/third_party/WebKit/Source/core/inspector/v8/V8ProfilerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/v8/V8ProfilerAgent.h
@@ -17,7 +17,7 @@ class Isolate;
namespace blink {
-class InspectorState;
+class JSONObject;
typedef String ErrorString;
@@ -27,7 +27,7 @@ public:
virtual ~V8ProfilerAgent() { }
// State management methods.
- virtual void setInspectorState(InspectorState*) = 0;
+ virtual void setInspectorState(PassRefPtr<JSONObject>) = 0;
virtual void setFrontend(InspectorFrontend::Profiler*) = 0;
virtual void clearFrontend() = 0;
virtual void restore() = 0;

Powered by Google App Engine
This is Rietveld 408576698