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

Unified Diff: third_party/WebKit/Source/core/inspector/InjectedScriptHost.h

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/core/inspector/InjectedScriptHost.h
diff --git a/third_party/WebKit/Source/core/inspector/InjectedScriptHost.h b/third_party/WebKit/Source/core/inspector/InjectedScriptHost.h
index 87fe9dbac00c70a75da81fc6aa7916cd97b12d47..ecadc8afc8cf931df5618aa251ed0d2b49dc7889 100644
--- a/third_party/WebKit/Source/core/inspector/InjectedScriptHost.h
+++ b/third_party/WebKit/Source/core/inspector/InjectedScriptHost.h
@@ -65,14 +65,7 @@ public:
using InspectCallback = Function<void(PassRefPtr<TypeBuilder::Runtime::RemoteObject>, PassRefPtr<JSONObject>)>;
- void init(InspectorConsoleAgent* consoleAgent, V8DebuggerAgent* debuggerAgent, PassOwnPtr<InspectCallback> inspectCallback, V8Debugger* debugger, PassOwnPtr<InjectedScriptHostClient> injectedScriptHostClient)
- {
- m_consoleAgent = consoleAgent;
- m_debuggerAgent = debuggerAgent;
- m_inspectCallback = inspectCallback;
- m_debugger = debugger;
- m_client = injectedScriptHostClient;
- }
+ void init(InspectorConsoleAgent*, V8DebuggerAgent*, PassOwnPtr<InspectCallback>, V8Debugger*, PassOwnPtr<InjectedScriptHostClient>);
static EventTarget* eventTargetFromV8Value(v8::Isolate*, v8::Local<v8::Value>);

Powered by Google App Engine
This is Rietveld 408576698