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

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

Issue 1038603002: DevTools: use v8::Isolate::RequestInterrupt instead of v8::Debug::DebugBreakForCommand (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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 | « no previous file | Source/bindings/core/v8/ScriptDebugServer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptDebugServer.h
diff --git a/Source/bindings/core/v8/ScriptDebugServer.h b/Source/bindings/core/v8/ScriptDebugServer.h
index 68a02b408b05fe4b6ee7a6db731eb74015ef9234..5d3f9ebf86cb520932862350566e526be12cf452 100644
--- a/Source/bindings/core/v8/ScriptDebugServer.h
+++ b/Source/bindings/core/v8/ScriptDebugServer.h
@@ -141,6 +141,7 @@ protected:
v8::Isolate* m_isolate;
private:
+ static void v8InterruptCallback(v8::Isolate*, void*);
static void v8DebugEventCallback(const v8::Debug::EventDetails&);
void handleV8DebugEvent(const v8::Debug::EventDetails&);
@@ -163,6 +164,8 @@ private:
v8::Local<v8::Object> m_executionState;
RefPtr<ScriptState> m_pausedScriptState;
bool m_runningNestedMessageLoop;
+ class ThreadSafeTaskQueue;
+ OwnPtr<ThreadSafeTaskQueue> m_taskQueue;
};
} // namespace blink
« no previous file with comments | « no previous file | Source/bindings/core/v8/ScriptDebugServer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698