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

Unified Diff: third_party/WebKit/Source/core/inspector/v8/V8AsyncCallTracker.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/v8/V8AsyncCallTracker.h
diff --git a/third_party/WebKit/Source/core/inspector/v8/V8AsyncCallTracker.h b/third_party/WebKit/Source/core/inspector/v8/V8AsyncCallTracker.h
index ecc7ff3aa51fb01704689838e2891a5f2f6a85bf..00c32eedc7e56c60e51e3351afc1f1e5b24fb5e9 100644
--- a/third_party/WebKit/Source/core/inspector/v8/V8AsyncCallTracker.h
+++ b/third_party/WebKit/Source/core/inspector/v8/V8AsyncCallTracker.h
@@ -18,7 +18,6 @@ class ScriptState;
class V8AsyncCallTracker final : public NoBaseWillBeGarbageCollectedFinalized<V8AsyncCallTracker>, public ScriptState::Observer {
WTF_MAKE_NONCOPYABLE(V8AsyncCallTracker);
- WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(V8AsyncCallTracker);
WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED(V8AsyncCallTracker);
public:
static PassOwnPtrWillBeRawPtr<V8AsyncCallTracker> create(V8DebuggerAgentImpl* debuggerAgent)
@@ -45,7 +44,7 @@ private:
class V8ContextAsyncOperations;
WillBeHeapHashMap<RefPtr<ScriptState>, OwnPtrWillBeMember<V8ContextAsyncOperations>> m_contextAsyncOperationMap;
- RawPtrWillBeMember<V8DebuggerAgentImpl> m_debuggerAgent;
+ V8DebuggerAgentImpl* m_debuggerAgent;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698