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

Unified Diff: third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/dom/FrameRequestCallbackCollection.h
diff --git a/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.h b/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.h
index 48306f3d8f4186cd560627bb60c4eef69e30c68e..99ee7f8563230b3139f8212ba20ee41c9c113e83 100644
--- a/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.h
+++ b/third_party/WebKit/Source/core/dom/FrameRequestCallbackCollection.h
@@ -28,13 +28,13 @@ public:
DECLARE_TRACE();
private:
- using CallbackList = PersistentHeapVectorWillBeHeapVector<Member<FrameRequestCallback>>;
+ using CallbackList = HeapVector<Member<FrameRequestCallback>>;
CallbackList m_callbacks;
CallbackList m_callbacksToInvoke; // only non-empty while inside executeCallbacks
CallbackId m_nextCallbackId = 0;
- RawPtrWillBeMember<ExecutionContext> m_context;
+ Member<ExecutionContext> m_context;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/dom/FirstLetterPseudoElement.h ('k') | third_party/WebKit/Source/core/dom/Fullscreen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698