| Index: third_party/WebKit/public/platform/modules/notifications/WebNotificationManager.h
|
| diff --git a/third_party/WebKit/public/platform/modules/notifications/WebNotificationManager.h b/third_party/WebKit/public/platform/modules/notifications/WebNotificationManager.h
|
| index 490376c1443e9529a02291ee4400738753609c0e..20aa454aff0e34d66ad5479f64c958254ea1eb6a 100644
|
| --- a/third_party/WebKit/public/platform/modules/notifications/WebNotificationManager.h
|
| +++ b/third_party/WebKit/public/platform/modules/notifications/WebNotificationManager.h
|
| @@ -34,25 +34,27 @@ class WebNotificationManager {
|
| public:
|
| virtual ~WebNotificationManager() {}
|
|
|
| - // Shows a page notification on the user's system. These notifications will have their
|
| - // events delivered to the delegate specified in this call.
|
| + // Shows a page notification on the user's system. These notifications will
|
| + // have their events delivered to the delegate specified in this call.
|
| virtual void show(const WebSecurityOrigin&,
|
| const WebNotificationData&,
|
| std::unique_ptr<WebNotificationResources>,
|
| WebNotificationDelegate*) = 0;
|
|
|
| - // Shows a persistent notification on the user's system. These notifications will have
|
| - // their events delivered to a Service Worker rather than the object's delegate. Will
|
| - // take ownership of the WebNotificationShowCallbacks object.
|
| + // Shows a persistent notification on the user's system. These notifications
|
| + // will have their events delivered to a Service Worker rather than the
|
| + // object's delegate. Will take ownership of the WebNotificationShowCallbacks
|
| + // object.
|
| virtual void showPersistent(const WebSecurityOrigin&,
|
| const WebNotificationData&,
|
| std::unique_ptr<WebNotificationResources>,
|
| WebServiceWorkerRegistration*,
|
| WebNotificationShowCallbacks*) = 0;
|
|
|
| - // Asynchronously gets the persistent notifications belonging to the Service Worker Registration.
|
| - // If |filterTag| is not an empty string, only the notification with the given tag will be
|
| - // considered. Will take ownership of the WebNotificationGetCallbacks object.
|
| + // Asynchronously gets the persistent notifications belonging to the Service
|
| + // Worker Registration. If |filterTag| is not an empty string, only the
|
| + // notification with the given tag will be considered. Will take ownership of
|
| + // the WebNotificationGetCallbacks object.
|
| virtual void getNotifications(const WebString& filterTag,
|
| WebServiceWorkerRegistration*,
|
| WebNotificationGetCallbacks*) = 0;
|
|
|