Index: mojo/services/html_viewer/webnotificationmanager_impl.h |
diff --git a/mojo/services/html_viewer/webnotificationmanager_impl.h b/mojo/services/html_viewer/webnotificationmanager_impl.h |
index a4e3e539cee4d88f5bf0c5c53f3281e7e7c8fde1..0cf178a9d51fc7419d6a485b920067c0d7414ac6 100644 |
--- a/mojo/services/html_viewer/webnotificationmanager_impl.h |
+++ b/mojo/services/html_viewer/webnotificationmanager_impl.h |
@@ -14,28 +14,28 @@ namespace html_viewer { |
class WebNotificationManagerImpl : public blink::WebNotificationManager { |
public: |
WebNotificationManagerImpl(); |
- ~WebNotificationManagerImpl() override; |
+ virtual ~WebNotificationManagerImpl(); |
// blink::WebNotificationManager methods: |
- void show(const blink::WebSerializedOrigin&, |
- const blink::WebNotificationData&, |
- blink::WebNotificationDelegate*) override; |
- void showPersistent(const blink::WebSerializedOrigin&, |
- const blink::WebNotificationData&, |
- blink::WebServiceWorkerRegistration*, |
- blink::WebNotificationShowCallbacks*) override; |
- void getNotifications(const blink::WebString& filterTag, |
- blink::WebServiceWorkerRegistration*, |
- blink::WebNotificationGetCallbacks*) override; |
- void close(blink::WebNotificationDelegate*) override; |
- void closePersistent(const blink::WebSerializedOrigin&, |
- int64_t persistentNotificationId) override; |
- void closePersistent(const blink::WebSerializedOrigin&, |
- const blink::WebString& persistentNotificationId) |
- override; |
- void notifyDelegateDestroyed(blink::WebNotificationDelegate*) override; |
- blink::WebNotificationPermission checkPermission( |
- const blink::WebSerializedOrigin&) override; |
+ virtual void show(const blink::WebSerializedOrigin&, |
+ const blink::WebNotificationData&, |
+ blink::WebNotificationDelegate*); |
+ virtual void showPersistent(const blink::WebSerializedOrigin&, |
+ const blink::WebNotificationData&, |
+ blink::WebServiceWorkerRegistration*, |
+ blink::WebNotificationShowCallbacks*); |
+ virtual void getNotifications(const blink::WebString& filterTag, |
+ blink::WebServiceWorkerRegistration*, |
+ blink::WebNotificationGetCallbacks*); |
+ virtual void close(blink::WebNotificationDelegate*); |
+ virtual void closePersistent(const blink::WebSerializedOrigin&, |
+ int64_t persistentNotificationId); |
+ virtual void closePersistent( |
+ const blink::WebSerializedOrigin&, |
+ const blink::WebString& persistentNotificationId); |
+ virtual void notifyDelegateDestroyed(blink::WebNotificationDelegate*); |
+ virtual blink::WebNotificationPermission checkPermission( |
+ const blink::WebSerializedOrigin&); |
private: |
DISALLOW_COPY_AND_ASSIGN(WebNotificationManagerImpl); |