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

Unified Diff: third_party/WebKit/Source/modules/background_sync/SyncCallbacks.h

Issue 2392443007: reflow comments in modules/[app_banner,encoding] (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/Source/modules/background_sync/SyncCallbacks.h
diff --git a/third_party/WebKit/Source/modules/background_sync/SyncCallbacks.h b/third_party/WebKit/Source/modules/background_sync/SyncCallbacks.h
index 63447c14e70a123af4ba28ab11f0cb6e9a932113..502c985666a453155e9297709aede9ae2ea13608 100644
--- a/third_party/WebKit/Source/modules/background_sync/SyncCallbacks.h
+++ b/third_party/WebKit/Source/modules/background_sync/SyncCallbacks.h
@@ -21,14 +21,16 @@ struct WebSyncError;
struct WebSyncRegistration;
class WebString;
-// SyncRegistrationCallbacks is an implementation of WebSyncRegistrationCallbacks
-// that will resolve the underlying promise depending on the result passed to
-// the callback. It takes a ServiceWorkerRegistration in its constructor and
-// will pass it to the SyncRegistration.
+// SyncRegistrationCallbacks is an implementation of
+// WebSyncRegistrationCallbacks that will resolve the underlying promise
+// depending on the result passed to the callback. It takes a
+// ServiceWorkerRegistration in its constructor and will pass it to the
+// SyncRegistration.
class SyncRegistrationCallbacks final : public WebSyncRegistrationCallbacks {
WTF_MAKE_NONCOPYABLE(SyncRegistrationCallbacks);
- // FIXME(tasak): when making public/platform classes to use PartitionAlloc,
- // the following macro should be moved to WebCallbacks defined in public/platformWebCallbacks.h.
+ // FIXME(tasak): When making public/platform classes to use PartitionAlloc,
+ // the following macro should be moved to WebCallbacks defined in
+ // public/platformWebCallbacks.h.
USING_FAST_MALLOC(SyncRegistrationCallbacks);
public:
@@ -43,15 +45,17 @@ class SyncRegistrationCallbacks final : public WebSyncRegistrationCallbacks {
Persistent<ServiceWorkerRegistration> m_serviceWorkerRegistration;
};
-// SyncGetRegistrationsCallbacks is an implementation of WebSyncGetRegistrationsCallbacks
-// that will resolve the underlying promise depending on the result passed to
-// the callback. It takes a ServiceWorkerRegistration in its constructor and
-// will pass it to the SyncRegistration.
+// SyncGetRegistrationsCallbacks is an implementation of
+// WebSyncGetRegistrationsCallbacks that will resolve the underlying promise
+// depending on the result passed to the callback. It takes a
+// ServiceWorkerRegistration in its constructor and will pass it to the
+// SyncRegistration.
class SyncGetRegistrationsCallbacks final
: public WebSyncGetRegistrationsCallbacks {
WTF_MAKE_NONCOPYABLE(SyncGetRegistrationsCallbacks);
- // FIXME(tasak): when making public/platform classes to use PartitionAlloc,
- // the following macro should be moved to WebCallbacks defined in public/platformWebCallbacks.h.
+ // FIXME(tasak): When making public/platform classes to use PartitionAlloc,
+ // the following macro should be moved to WebCallbacks defined in
+ // public/platformWebCallbacks.h.
USING_FAST_MALLOC(SyncGetRegistrationsCallbacks);
public:

Powered by Google App Engine
This is Rietveld 408576698