summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/notifications/notification.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/notifications/notification.h')
-rw-r--r--chromium/third_party/blink/renderer/modules/notifications/notification.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/chromium/third_party/blink/renderer/modules/notifications/notification.h b/chromium/third_party/blink/renderer/modules/notifications/notification.h
index b45101ea0ec..8274bdfa259 100644
--- a/chromium/third_party/blink/renderer/modules/notifications/notification.h
+++ b/chromium/third_party/blink/renderer/modules/notifications/notification.h
@@ -40,7 +40,7 @@
#include "third_party/blink/renderer/bindings/core/v8/script_value.h"
#include "third_party/blink/renderer/bindings/core/v8/serialization/serialized_script_value.h"
#include "third_party/blink/renderer/core/dom/dom_time_stamp.h"
-#include "third_party/blink/renderer/core/execution_context/context_lifecycle_observer.h"
+#include "third_party/blink/renderer/core/execution_context/execution_context_lifecycle_observer.h"
#include "third_party/blink/renderer/modules/event_target_modules.h"
#include "third_party/blink/renderer/modules/modules_export.h"
#include "third_party/blink/renderer/modules/vibration/navigator_vibration.h"
@@ -60,7 +60,7 @@ class TimestampTrigger;
class MODULES_EXPORT Notification final
: public EventTargetWithInlineData,
public ActiveScriptWrappable<Notification>,
- public ContextLifecycleObserver,
+ public ExecutionContextLifecycleObserver,
public mojom::blink::NonPersistentNotificationListener {
USING_GARBAGE_COLLECTED_MIXIN(Notification);
DEFINE_WRAPPERTYPEINFO();
@@ -130,17 +130,17 @@ class MODULES_EXPORT Notification final
// EventTarget interface.
ExecutionContext* GetExecutionContext() const final {
- return ContextLifecycleObserver::GetExecutionContext();
+ return ExecutionContextLifecycleObserver::GetExecutionContext();
}
const AtomicString& InterfaceName() const override;
- // ContextLifecycleObserver interface.
- void ContextDestroyed(ExecutionContext* context) override;
+ // ExecutionContextLifecycleObserver interface.
+ void ContextDestroyed() override;
// ScriptWrappable interface.
bool HasPendingActivity() const final;
- void Trace(blink::Visitor* visitor) override;
+ void Trace(Visitor* visitor) override;
protected:
// EventTarget interface.