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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationRequest.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/presentation/PresentationRequest.cpp
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp b/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
index 7f2e17eff9db3cb51db76acdeef5446f980eb9fb..7cae36d8a172302244aba9a54ed447a8001f2603 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
+++ b/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
@@ -53,9 +53,10 @@ Settings* settings(ExecutionContext* executionContext) {
ScriptPromise rejectWithSandBoxException(ScriptState* scriptState) {
return ScriptPromise::rejectWithDOMException(
- scriptState, DOMException::create(SecurityError,
- "The document is sandboxed and lacks "
- "the 'allow-presentation' flag."));
+ scriptState,
+ DOMException::create(SecurityError,
+ "The document is sandboxed and lacks "
+ "the 'allow-presentation' flag."));
}
} // anonymous namespace
@@ -180,8 +181,9 @@ ScriptPromise PresentationRequest::reconnect(ScriptState* scriptState,
controller->findExistingConnection(m_urls, id);
if (existingConnection) {
client->joinSession(
- m_urls, id, WTF::makeUnique<ExistingPresentationConnectionCallbacks>(
- resolver, existingConnection));
+ m_urls, id,
+ WTF::makeUnique<ExistingPresentationConnectionCallbacks>(
+ resolver, existingConnection));
} else {
client->joinSession(
m_urls, id,

Powered by Google App Engine
This is Rietveld 408576698