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

Unified Diff: third_party/WebKit/Source/modules/payments/PaymentAppManager.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/payments/PaymentAppManager.cpp
diff --git a/third_party/WebKit/Source/modules/payments/PaymentAppManager.cpp b/third_party/WebKit/Source/modules/payments/PaymentAppManager.cpp
index b9968788d8b81a55261afe9a3416b4158c862b40..a678ee91e74c2516a68377854f72508a2e7a4821 100644
--- a/third_party/WebKit/Source/modules/payments/PaymentAppManager.cpp
+++ b/third_party/WebKit/Source/modules/payments/PaymentAppManager.cpp
@@ -96,8 +96,9 @@ ScriptPromise PaymentAppManager::setManifest(
const PaymentAppManifest& manifest) {
if (!m_manager) {
return ScriptPromise::rejectWithDOMException(
- scriptState, DOMException::create(InvalidStateError,
- "Payment app manager unavailable."));
+ scriptState,
+ DOMException::create(InvalidStateError,
+ "Payment app manager unavailable."));
}
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);
@@ -115,8 +116,9 @@ ScriptPromise PaymentAppManager::setManifest(
ScriptPromise PaymentAppManager::getManifest(ScriptState* scriptState) {
if (!m_manager) {
return ScriptPromise::rejectWithDOMException(
- scriptState, DOMException::create(InvalidStateError,
- "Payment app manager unavailable."));
+ scriptState,
+ DOMException::create(InvalidStateError,
+ "Payment app manager unavailable."));
}
ScriptPromiseResolver* resolver = ScriptPromiseResolver::create(scriptState);

Powered by Google App Engine
This is Rietveld 408576698