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

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

Issue 1933573002: [DevTools] Remove last bits of logic from v8 agent wrappers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@1913283003
Patch Set: rebased, fixed uninitialized variable Created 4 years, 7 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/V8InspectorSessionClient.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
index bb5beec6096bc67663c026b131d92b5c137d21ff..e4775ffc16085ce1aa7526f17ee8caa4c0a2c494 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/public/V8InspectorSessionClient.h
@@ -16,6 +16,10 @@ public:
virtual ~V8InspectorSessionClient() { }
virtual void startInstrumenting() = 0;
virtual void stopInstrumenting() = 0;
+ virtual void resumeStartup() = 0;
+ virtual bool canExecuteScripts() = 0;
+ virtual void profilingStarted() = 0;
+ virtual void profilingStopped() = 0;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698