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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js

Issue 2696253002: [DevTools] Introduced async step into scheduled function call (Closed)
Patch Set: Created 3 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/devtools/front_end/sdk/DebuggerModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
index 240f118c62d769a0079839105a2f71c055d8550c..dedbe86ac180becb07009fe18e81358548e61e60 100644
--- a/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/sdk/DebuggerModel.js
@@ -160,6 +160,10 @@ SDK.DebuggerModel = class extends SDK.SDKModel {
this._agent.stepInto();
}
+ stepIntoAsync() {
+ this._agent.stepIntoAsync();
+ }
+
stepOver() {
this._agent.stepOver();
}

Powered by Google App Engine
This is Rietveld 408576698