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

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

Issue 1377813002: Oilpan: fix build after r351269. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use a WeakPersistent<InjectedScriptManager> instead Created 5 years, 3 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/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 66a5ec610c061eee12e6adff42db5fdffad0b3ff..79b4a0078d9f05dcf50b9004b90460567b899b0f 100644
--- a/third_party/WebKit/Source/core/inspector/InjectedScriptHost.h
+++ b/third_party/WebKit/Source/core/inspector/InjectedScriptHost.h
@@ -109,7 +109,7 @@ private:
InjectedScriptHost();
RawPtrWillBeMember<InspectorConsoleAgent> m_consoleAgent;
- RawPtrWillBeMember<V8DebuggerAgent> m_debuggerAgent;
+ V8DebuggerAgent* m_debuggerAgent;
OwnPtr<InspectCallback> m_inspectCallback;
V8Debugger* m_debugger;
WillBeHeapVector<OwnPtrWillBeMember<InspectableObject>> m_inspectedObjects;

Powered by Google App Engine
This is Rietveld 408576698