Index: third_party/WebKit/Source/core/frame/DeviceSingleWindowEventController.h |
diff --git a/third_party/WebKit/Source/core/frame/DeviceSingleWindowEventController.h b/third_party/WebKit/Source/core/frame/DeviceSingleWindowEventController.h |
index 4ceece75dc053164451ebe6f8658066fb0f2cd1e..2f8a395e5a022f376b3463e2fdcee76057aca311 100644 |
--- a/third_party/WebKit/Source/core/frame/DeviceSingleWindowEventController.h |
+++ b/third_party/WebKit/Source/core/frame/DeviceSingleWindowEventController.h |
@@ -6,7 +6,7 @@ |
#define DeviceSingleWindowEventController_h |
#include "core/CoreExport.h" |
-#include "core/frame/DOMWindowLifecycleObserver.h" |
+#include "core/frame/LocalDOMWindow.h" |
#include "core/frame/PlatformEventController.h" |
#include "platform/heap/Handle.h" |
@@ -15,7 +15,7 @@ namespace blink { |
class Document; |
class Event; |
-class CORE_EXPORT DeviceSingleWindowEventController : public GarbageCollectedFinalized<DeviceSingleWindowEventController>, public PlatformEventController, public DOMWindowLifecycleObserver { |
+class CORE_EXPORT DeviceSingleWindowEventController : public GarbageCollectedFinalized<DeviceSingleWindowEventController>, public PlatformEventController, public LocalDOMWindow::EventListenerObserver { |
public: |
virtual ~DeviceSingleWindowEventController(); |
@@ -23,7 +23,7 @@ public: |
void didUpdateData() override; |
DECLARE_VIRTUAL_TRACE(); |
- // Inherited from DOMWindowLifecycleObserver. |
+ // Inherited from LocalDOMWindow::EventListenerObserver. |
void didAddEventListener(LocalDOMWindow*, const AtomicString&) override; |
void didRemoveEventListener(LocalDOMWindow*, const AtomicString&) override; |
void didRemoveAllEventListeners(LocalDOMWindow*) override; |