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

Unified Diff: Source/bindings/dart/DartScriptDebugServer.h

Issue 466243002: Support merged Dart-JS callstacks (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/dartium
Patch Set: Created 6 years, 3 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
« no previous file with comments | « Source/bindings/dart/DartInjectedScript.cpp ('k') | Source/bindings/dart/DartScriptDebugServer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/dart/DartScriptDebugServer.h
diff --git a/Source/bindings/dart/DartScriptDebugServer.h b/Source/bindings/dart/DartScriptDebugServer.h
index f94e1ac8305f992aa1b381e6ae6c6a36f99343c9..6c5002cbdc032e38abe6cf0ff7a7db332a058588 100644
--- a/Source/bindings/dart/DartScriptDebugServer.h
+++ b/Source/bindings/dart/DartScriptDebugServer.h
@@ -190,11 +190,11 @@ public:
virtual void stepOverStatement();
virtual void stepOutOfFunction();
- virtual bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, StackTrace* newCallFrames, RefPtr<JSONObject>* result);
+ virtual bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, StackTraces* newCallFrames, RefPtr<JSONObject>* result);
virtual ScriptCallFrame topCallFrameNoScopes();
virtual int frameCount();
- virtual StackTrace currentCallFrames();
- virtual StackTrace currentCallFramesForAsyncStack();
+ virtual StackTraces currentCallFrames();
+ virtual StackTraces currentCallFramesForAsyncStack();
virtual bool isPaused();
virtual bool runningNestedMessageLoop() { return m_runningNestedMessageLoop; }
@@ -249,6 +249,7 @@ protected:
bool m_breakpointsActivated;
bool m_runningNestedMessageLoop;
Dart_StackTrace m_executionState;
+ bool m_isPaused;
Dart_Isolate m_pausedIsolate;
Page* m_pausedPage;
HashSet<Dart_Isolate> m_interruptCalled;
@@ -290,12 +291,12 @@ public:
virtual void stepOverStatement();
virtual void stepOutOfFunction();
- virtual bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, StackTrace* newCallFrames, RefPtr<JSONObject>* result);
+ virtual bool setScriptSource(const String& sourceID, const String& newContent, bool preview, String* error, RefPtr<TypeBuilder::Debugger::SetScriptSourceError>&, StackTraces* newCallFrames, RefPtr<JSONObject>* result);
virtual ScriptCallFrame topCallFrameNoScopes();
virtual int frameCount();
- virtual StackTrace currentCallFrames();
- virtual StackTrace currentCallFramesForAsyncStack();
+ virtual StackTraces currentCallFrames();
+ virtual StackTraces currentCallFramesForAsyncStack();
virtual bool isPaused();
virtual bool runningNestedMessageLoop();
« no previous file with comments | « Source/bindings/dart/DartInjectedScript.cpp ('k') | Source/bindings/dart/DartScriptDebugServer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698