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

Unified Diff: third_party/WebKit/public/platform/modules/notifications/WebNotificationManager.h

Issue 2388983002: reflow comments in public/modules/{notifications,push_messaging} (Closed)
Patch Set: Created 4 years, 2 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
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;

Powered by Google App Engine
This is Rietveld 408576698