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

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

Issue 1666563005: DevTools: merge ScriptCallStack and ScriptAsyncCallStack, move CallStacks from console to Runtime. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: testts Created 4 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/core/inspector/v8/V8DebuggerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerAgent.h b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerAgent.h
index 7638483476347f5ebea6e29293e1267533e16b27..72b7da93d304f729c506855e6ad8e5369d98580c 100644
--- a/third_party/WebKit/Source/core/inspector/v8/V8DebuggerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/v8/V8DebuggerAgent.h
@@ -16,7 +16,7 @@ class InjectedScript;
class InjectedScriptManager;
class JSONObject;
class RemoteCallFrameId;
-class ScriptAsyncCallStack;
+class ScriptCallStack;
class V8Debugger;
typedef String ErrorString;
@@ -97,7 +97,7 @@ public:
virtual void removeBreakpoint(const String& scriptId, int lineNumber, int columnNumber, BreakpointSource) = 0;
// Async call stacks implementation
- virtual PassRefPtr<ScriptAsyncCallStack> currentAsyncStackTraceForConsole() = 0;
+ virtual PassRefPtr<ScriptCallStack> currentAsyncStackTraceForConsole() = 0;
static const int unknownAsyncOperationId;
virtual int traceAsyncOperationStarting(const String& description) = 0;
virtual void traceAsyncCallbackStarting(int operationId) = 0;

Powered by Google App Engine
This is Rietveld 408576698