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

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 years, 10 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/serviceworkers/ServiceWorkerRegistration.cpp
diff --git a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
index 80262bbfd91323ecb9efd35db2ff75cbe07a760a..6927b938bb0836ed5c9c45ee47bfe8fa334de82b 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/ServiceWorkerRegistration.cpp
@@ -112,10 +112,11 @@ ScriptPromise ServiceWorkerRegistration::unregister(ScriptState* scriptState) {
ServiceWorkerContainerClient::from(getExecutionContext());
if (!client || !client->provider())
return ScriptPromise::rejectWithDOMException(
- scriptState, DOMException::create(InvalidStateError,
- "Failed to unregister a "
- "ServiceWorkerRegistration: No "
- "associated provider is available."));
+ scriptState,
+ DOMException::create(InvalidStateError,
+ "Failed to unregister a "
+ "ServiceWorkerRegistration: No "
+ "associated provider is available."));
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
ScriptPromise promise = resolver->promise();

Powered by Google App Engine
This is Rietveld 408576698