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

Unified Diff: third_party/WebKit/Source/core/inspector/AsyncCallTracker.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/AsyncCallTracker.h
diff --git a/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h b/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
index bfc249d700ac42725d6a4626d81e6c73b107d46e..5ff6fd74e5523595f6523a74f42d3a4a17cff804 100644
--- a/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
+++ b/third_party/WebKit/Source/core/inspector/AsyncCallTracker.h
@@ -55,7 +55,6 @@ class XMLHttpRequest;
class CORE_EXPORT AsyncCallTracker final : public NoBaseWillBeGarbageCollectedFinalized<AsyncCallTracker> {
WTF_MAKE_NONCOPYABLE(AsyncCallTracker);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(AsyncCallTracker);
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(AsyncCallTracker);
public:
AsyncCallTracker(V8DebuggerAgent*, InstrumentingAgents*);
@@ -113,7 +112,7 @@ private:
using ExecutionContextDataMap = WillBeHeapHashMap<RawPtrWillBeMember<ExecutionContext>, OwnPtrWillBeMember<ExecutionContextData>>;
ExecutionContextDataMap m_executionContextDataMap;
- RawPtrWillBeMember<V8DebuggerAgent> m_debuggerAgent;
+ V8DebuggerAgent* m_debuggerAgent;
RawPtrWillBeMember<InstrumentingAgents> m_instrumentingAgents;
};

Powered by Google App Engine
This is Rietveld 408576698