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

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

Issue 1128273005: Devtools: Move runMessageLoopOnPause and other methods on ScriptDebugServer::Client (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix ownptrs Created 5 years, 7 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/core/v8/V8PerIsolateData.h
diff --git a/Source/bindings/core/v8/V8PerIsolateData.h b/Source/bindings/core/v8/V8PerIsolateData.h
index 0560728b093b3f4b6df7e9c03b3735389f5f03a3..7c706ee8d6b1f9178c2a529b14387a480eb3e1b3 100644
--- a/Source/bindings/core/v8/V8PerIsolateData.h
+++ b/Source/bindings/core/v8/V8PerIsolateData.h
@@ -31,6 +31,7 @@
#include "bindings/core/v8/V8HiddenValue.h"
#include "bindings/core/v8/WrapperTypeInfo.h"
#include "core/CoreExport.h"
+#include "core/inspector/PerIsolateDebuggerClient.h"
#include "gin/public/isolate_holder.h"
#include "wtf/HashMap.h"
#include "wtf/Noncopyable.h"
@@ -117,7 +118,7 @@ public:
void runEndOfScopeTasks();
void clearEndOfScopeTasks();
- void setScriptDebugServer(PassOwnPtrWillBeRawPtr<ScriptDebugServer>);
+ void setScriptDebugServer(PassOwnPtrWillBeRawPtr<PerIsolateDebuggerClient>);
private:
V8PerIsolateData();
@@ -154,9 +155,9 @@ private:
Vector<OwnPtr<EndOfScopeTask>> m_endOfScopeTasks;
#if ENABLE(OILPAN)
- CrossThreadPersistent<ScriptDebugServer> m_debugServer;
+ CrossThreadPersistent<PerIsolateDebuggerClient> m_debugServer;
#else
- OwnPtr<ScriptDebugServer> m_debugServer;
+ OwnPtr<PerIsolateDebuggerClient> m_debugServer;
#endif
};

Powered by Google App Engine
This is Rietveld 408576698