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

Unified Diff: src/inspector/v8-debugger-agent-impl.h

Issue 2655253004: [inspector] introduced stepIntoAsync for chained callbacks (Closed)
Patch Set: addressed Yang's comment Created 3 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: src/inspector/v8-debugger-agent-impl.h
diff --git a/src/inspector/v8-debugger-agent-impl.h b/src/inspector/v8-debugger-agent-impl.h
index 715b3c3fd78a718cc623ffb1527a3e9aabe437cd..697ecdabd4db9e9eb48b8d66e987d33a86c71793 100644
--- a/src/inspector/v8-debugger-agent-impl.h
+++ b/src/inspector/v8-debugger-agent-impl.h
@@ -87,6 +87,7 @@ class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
Response resume() override;
Response stepOver() override;
Response stepInto() override;
+ Response stepIntoAsync() override;
Response stepOut() override;
Response setPauseOnExceptions(const String16& pauseState) override;
Response evaluateOnCallFrame(
@@ -141,6 +142,10 @@ class V8DebuggerAgentImpl : public protocol::Debugger::Backend {
v8::Isolate* isolate() { return m_isolate; }
+ void asyncTaskCreated();
+ void asyncTaskStarted();
+ void asyncTaskFinished();
+
private:
void enableImpl();

Powered by Google App Engine
This is Rietveld 408576698