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

Unified Diff: Source/bindings/v8/ScriptDebugServer.h

Issue 466243002: Support merged Dart-JS callstacks (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/dartium
Patch Set: Created 6 years, 4 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: Source/bindings/v8/ScriptDebugServer.h
diff --git a/Source/bindings/v8/ScriptDebugServer.h b/Source/bindings/v8/ScriptDebugServer.h
index a0fe24b420680dc855e1a2edb3d9c9b67d23778e..9a7045626d8cf6c1f286e18eb6d3a12030e0c392 100644
--- a/Source/bindings/v8/ScriptDebugServer.h
+++ b/Source/bindings/v8/ScriptDebugServer.h
@@ -86,6 +86,7 @@ public:
virtual int frameCount() = 0;
virtual StackTrace currentCallFrames() = 0;
+ virtual StackTrace currentCallFramesForVm() = 0;
vsm 2014/08/13 14:26:45 What is the distinction between this and the above
Jacob 2014/08/13 21:36:15 removed this method and cleaned up the logic so cu
virtual StackTrace currentCallFramesForAsyncStack() = 0;
virtual bool isPaused() = 0;
@@ -132,6 +133,7 @@ public:
virtual ScriptCallFrame topCallFrameNoScopes();
virtual int frameCount();
virtual StackTrace currentCallFrames();
+ virtual StackTrace currentCallFramesForVm();
virtual StackTrace currentCallFramesForAsyncStack();
class Task {

Powered by Google App Engine
This is Rietveld 408576698