| Index: third_party/WebKit/Source/modules/notifications/Notification.h
|
| diff --git a/third_party/WebKit/Source/modules/notifications/Notification.h b/third_party/WebKit/Source/modules/notifications/Notification.h
|
| index 065e3b9e6d4eca12c49c79dc7cdd9630cdbd6e10..3b46d09b117e9857a647751cc73a04c55a4551f4 100644
|
| --- a/third_party/WebKit/Source/modules/notifications/Notification.h
|
| +++ b/third_party/WebKit/Source/modules/notifications/Notification.h
|
| @@ -31,6 +31,7 @@
|
| #ifndef Notification_h
|
| #define Notification_h
|
|
|
| +#include "bindings/core/v8/ActiveScriptWrappable.h"
|
| #include "bindings/core/v8/ScriptPromise.h"
|
| #include "bindings/core/v8/ScriptValue.h"
|
| #include "bindings/core/v8/SerializedScriptValue.h"
|
| @@ -57,7 +58,7 @@ class NotificationOptions;
|
| class NotificationPermissionCallback;
|
| class ScriptState;
|
|
|
| -class MODULES_EXPORT Notification final : public RefCountedGarbageCollectedEventTargetWithInlineData<Notification>, public ActiveDOMObject, public WebNotificationDelegate {
|
| +class MODULES_EXPORT Notification final : public RefCountedGarbageCollectedEventTargetWithInlineData<Notification>, public ActiveScriptWrappable, public ActiveDOMObject, public WebNotificationDelegate {
|
| REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(Notification);
|
| WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Notification);
|
| DEFINE_WRAPPERTYPEINFO();
|
| @@ -112,7 +113,9 @@ public:
|
|
|
| // ActiveDOMObject interface.
|
| void stop() override;
|
| - bool hasPendingActivity() const override;
|
| +
|
| + // ActiveScriptWrappable interface.
|
| + bool hasPendingActivity() const final;
|
|
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
|
|