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

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

Issue 1806643002: Revert of Remove V8RecrusionScope, cleanup call sites. (patchset #8 id:140001 of https://codereview… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverts 1805543002 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/InjectedScript.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
index d2d2c2a2f7969a8e5a450ddaf3153b5df18b2a0a..e94c78eb2cf4e7fda28082161aa40841a15b8c1d 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/InjectedScript.h
@@ -41,6 +41,7 @@ namespace blink {
class InjectedScriptManager;
class RemoteObjectId;
class V8FunctionCall;
+class V8DebuggerClient;
namespace protocol {
class DictionaryValue;
@@ -113,7 +114,7 @@ public:
private:
friend InjectedScript* InjectedScriptManager::injectedScriptFor(v8::Local<v8::Context>);
- InjectedScript(InjectedScriptManager*, v8::Local<v8::Context>, v8::Local<v8::Object>, PassOwnPtr<InjectedScriptNative>, int contextId);
+ InjectedScript(InjectedScriptManager*, v8::Local<v8::Context>, v8::Local<v8::Object>, V8DebuggerClient*, PassOwnPtr<InjectedScriptNative>, int contextId);
bool canAccessInspectedWindow() const;
v8::Local<v8::Value> v8Value() const;
@@ -127,6 +128,7 @@ private:
v8::Isolate* m_isolate;
v8::Global<v8::Context> m_context;
v8::Global<v8::Value> m_value;
+ V8DebuggerClient* m_client;
OwnPtr<InjectedScriptNative> m_native;
int m_contextId;
String16 m_origin;

Powered by Google App Engine
This is Rietveld 408576698