| 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 840b2fc1d58853fa78b2eb5a575e41f85faee1af..683ad3e70c33a5f292eee3b23665ca69a20d36ec 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.
|
|
|