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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h

Issue 1924913002: [DevTools] Move API methods from V8DebuggerAgent to V8InspectorSession. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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/V8InspectorSessionImpl.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
index bad30bed9a7657b339b76e3bbb2c105e898d3173..cbaa9204f873f12751038817674fc284da3cf1b9 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8InspectorSessionImpl.h
@@ -55,6 +55,16 @@ public:
V8HeapProfilerAgent* heapProfilerAgent() override;
V8ProfilerAgent* profilerAgent() override;
V8RuntimeAgent* runtimeAgent() override;
+ void schedulePauseOnNextStatement(const String16& breakReason, PassOwnPtr<protocol::DictionaryValue> data) override;
+ void cancelPauseOnNextStatement() override;
+ void breakProgram(const String16& breakReason, PassOwnPtr<protocol::DictionaryValue> data) override;
+ void breakProgramOnException(const String16& breakReason, PassOwnPtr<protocol::DictionaryValue> data) override;
+ void setSkipAllPauses(bool) override;
+ void asyncTaskScheduled(const String16& taskName, void* task, bool recurring) override;
+ void asyncTaskCanceled(void* task) override;
+ void asyncTaskStarted(void* task) override;
+ void asyncTaskFinished(void* task) override;
+ void allAsyncTasksCanceled() override;
void addInspectedObject(PassOwnPtr<V8RuntimeAgent::Inspectable>);
V8RuntimeAgent::Inspectable* inspectedObject(unsigned num);

Powered by Google App Engine
This is Rietveld 408576698