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

Unified Diff: third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.cpp

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/ContextLifecycleNotifier.cpp
diff --git a/third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.cpp b/third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.cpp
index f4f0b9bb540ec4b932e8314353999039de398e5b..a59a8b41833ec86b8c4ed79396fb6240d8de976d 100644
--- a/third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.cpp
+++ b/third_party/WebKit/Source/core/dom/ContextLifecycleNotifier.cpp
@@ -35,7 +35,7 @@ namespace blink {
void ContextLifecycleNotifier::notifyResumingActiveDOMObjects()
{
TemporaryChange<IterationType> scope(m_iterating, IteratingOverAll);
- Vector<RawPtrWillBeUntracedMember<ContextLifecycleObserver>> snapshotOfObservers;
+ Vector<UntracedMember<ContextLifecycleObserver>> snapshotOfObservers;
copyToVector(m_observers, snapshotOfObservers);
for (ContextLifecycleObserver* observer : snapshotOfObservers) {
// FIXME: Oilpan: At the moment, it's possible that a ActiveDOMObject
@@ -58,7 +58,7 @@ void ContextLifecycleNotifier::notifyResumingActiveDOMObjects()
void ContextLifecycleNotifier::notifySuspendingActiveDOMObjects()
{
TemporaryChange<IterationType> scope(m_iterating, IteratingOverAll);
- Vector<RawPtrWillBeUntracedMember<ContextLifecycleObserver>> snapshotOfObservers;
+ Vector<UntracedMember<ContextLifecycleObserver>> snapshotOfObservers;
copyToVector(m_observers, snapshotOfObservers);
for (ContextLifecycleObserver* observer : snapshotOfObservers) {
// It's possible that the ActiveDOMObject is already destructed.
@@ -77,7 +77,7 @@ void ContextLifecycleNotifier::notifySuspendingActiveDOMObjects()
void ContextLifecycleNotifier::notifyStoppingActiveDOMObjects()
{
TemporaryChange<IterationType> scope(m_iterating, IteratingOverAll);
- Vector<RawPtrWillBeUntracedMember<ContextLifecycleObserver>> snapshotOfObservers;
+ Vector<UntracedMember<ContextLifecycleObserver>> snapshotOfObservers;
copyToVector(m_observers, snapshotOfObservers);
for (ContextLifecycleObserver* observer : snapshotOfObservers) {
// It's possible that the ActiveDOMObject is already destructed.
« no previous file with comments | « third_party/WebKit/Source/core/dom/ContextFeatures.h ('k') | third_party/WebKit/Source/core/dom/DOMImplementation.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698