Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: mojo/services/html_viewer/webnotificationmanager_impl.h

Issue 1090953002: Small cleanups in the Mojo HTML viewer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/services/html_viewer/webmimeregistry_impl.h ('k') | mojo/services/html_viewer/webscheduler_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « mojo/services/html_viewer/webmimeregistry_impl.h ('k') | mojo/services/html_viewer/webscheduler_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698