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

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

Issue 1804043002: Revert of Remove V8RecrusionScope, cleanup call sites. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/V8FunctionCall.h
diff --git a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
index a9230cc9b2803b902f30f4bb96d509fa1e7e50ab..a063620d5c32b531f92152a8bde89d3dfb3be242 100644
--- a/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
+++ b/third_party/WebKit/Source/platform/v8_inspector/V8FunctionCall.h
@@ -38,11 +38,11 @@
namespace blink {
-class V8DebuggerImpl;
+class V8DebuggerClient;
class V8FunctionCall {
public:
- V8FunctionCall(V8DebuggerImpl*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String16& name);
+ V8FunctionCall(V8DebuggerClient*, v8::Local<v8::Context>, v8::Local<v8::Value>, const String16& name);
void appendArgument(v8::Local<v8::Value>);
void appendArgument(const String16&);
@@ -57,7 +57,7 @@
v8::Local<v8::Context> context() { return m_context; }
protected:
- V8DebuggerImpl* m_debugger;
+ V8DebuggerClient* m_client;
v8::Local<v8::Context> m_context;
protocol::Vector<v8::Local<v8::Value>> m_arguments;
v8::Local<v8::String> m_name;

Powered by Google App Engine
This is Rietveld 408576698