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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.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/InspectorDebuggerAgent.h
diff --git a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h
index 8565478c22fed57d71b27304fbcf31da9bc1d52d..f15b4f1f5301fddf566fd353e447e313bbccd10a 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h
+++ b/third_party/WebKit/Source/core/inspector/InspectorDebuggerAgent.h
@@ -107,7 +107,7 @@ public:
protected:
InspectorDebuggerAgent(InjectedScriptManager*, V8Debugger*, int contextGroupId);
- OwnPtrWillBeMember<V8DebuggerAgent> m_v8DebuggerAgent;
+ OwnPtr<V8DebuggerAgent> m_v8DebuggerAgent;
OwnPtrWillBeMember<AsyncCallTracker> m_asyncCallTracker;
};

Powered by Google App Engine
This is Rietveld 408576698