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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp

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/InspectorDebuggerAgent.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
index f5ffd314e5295d096028886e32c2b401ee51c7e9..e701f9fe19ef274672dac23f06dc3c4621829a8a 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.cpp
@@ -32,7 +32,7 @@
#include "bindings/core/v8/V8Binding.h"
#include "core/inspector/AsyncCallTracker.h"
#include "core/inspector/MuteConsoleScope.h"
-#include "core/inspector/ScriptAsyncCallStack.h"
+#include "core/inspector/ScriptCallStack.h"
#include "core/inspector/v8/V8Debugger.h"
#include "platform/ScriptForbiddenScope.h"
@@ -251,7 +251,7 @@ bool InspectorDebuggerAgent::isPaused()
return m_v8DebuggerAgent->isPaused();
}
-PassRefPtr<ScriptAsyncCallStack> InspectorDebuggerAgent::currentAsyncStackTraceForConsole()
+PassRefPtr<ScriptCallStack> InspectorDebuggerAgent::currentAsyncStackTraceForConsole()
{
ScriptForbiddenScope::AllowUserAgentScript allowScripting;
return m_v8DebuggerAgent->currentAsyncStackTraceForConsole();

Powered by Google App Engine
This is Rietveld 408576698