| Index: third_party/WebKit/Source/core/page/PageVisibilityNotifier.cpp
|
| diff --git a/third_party/WebKit/Source/core/page/PageLifecycleNotifier.cpp b/third_party/WebKit/Source/core/page/PageVisibilityNotifier.cpp
|
| similarity index 87%
|
| rename from third_party/WebKit/Source/core/page/PageLifecycleNotifier.cpp
|
| rename to third_party/WebKit/Source/core/page/PageVisibilityNotifier.cpp
|
| index 96d5207ad7d8aad31468b9dc88d0009d2fcd2fa5..eb04fa716c40093bc5fe4a584cc3a52d465e2439 100644
|
| --- a/third_party/WebKit/Source/core/page/PageLifecycleNotifier.cpp
|
| +++ b/third_party/WebKit/Source/core/page/PageVisibilityNotifier.cpp
|
| @@ -24,16 +24,16 @@
|
| */
|
|
|
|
|
| -#include "core/page/PageLifecycleNotifier.h"
|
| +#include "core/page/PageVisibilityNotifier.h"
|
|
|
| -#include "core/page/PageLifecycleObserver.h"
|
| +#include "core/page/PageVisibilityObserver.h"
|
|
|
| namespace blink {
|
|
|
| -void PageLifecycleNotifier::notifyPageVisibilityChanged()
|
| +void PageVisibilityNotifier::notifyPageVisibilityChanged()
|
| {
|
| TemporaryChange<IterationState> scope(m_iterationState, AllowingNone);
|
| - for (PageLifecycleObserver* observer : m_observers)
|
| + for (PageVisibilityObserver* observer : m_observers)
|
| observer->pageVisibilityChanged();
|
| }
|
|
|
|
|