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

Unified Diff: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h

Issue 1769273004: Remove V8RecrusionScope, cleanup call sites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 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
Index: third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
index 3e5f90d034adc5804e2178fd984591979c30bf7c..0d19ef2cea4b76686f3311d8666b2b62b9fe6350 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScriptManager.h
@@ -52,6 +52,7 @@ public:
~InjectedScriptManager();
InjectedScriptHost* injectedScriptHost();
+ V8DebuggerImpl* debugger() { return m_debugger; }
InjectedScript* injectedScriptFor(v8::Local<v8::Context>);
InjectedScript* findInjectedScript(int) const;
@@ -71,7 +72,7 @@ private:
IdToInjectedScriptMap m_idToInjectedScript;
OwnPtr<InjectedScriptHost> m_injectedScriptHost;
bool m_customObjectFormatterEnabled;
- V8DebuggerClient* m_client;
+ V8DebuggerImpl* m_debugger;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698