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

Unified Diff: third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.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/quota/DeprecatedStorageQuota.cpp
diff --git a/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp b/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp
index f24868aba465289e3d478b9f9de0dc8f04264206..f5d087fd426a43f40cf91f1a7269a15cbaa5258e 100644
--- a/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp
+++ b/third_party/WebKit/Source/modules/quota/DeprecatedStorageQuota.cpp
@@ -63,16 +63,18 @@ void DeprecatedStorageQuota::queryUsageAndQuota(
storageType != WebStorageQuotaTypePersistent) {
// Unknown storage type is requested.
TaskRunnerHelper::get(TaskType::MiscPlatformAPI, executionContext)
- ->postTask(BLINK_FROM_HERE, StorageErrorCallback::createSameThreadTask(
- errorCallback, NotSupportedError));
+ ->postTask(BLINK_FROM_HERE,
+ StorageErrorCallback::createSameThreadTask(
+ errorCallback, NotSupportedError));
return;
}
SecurityOrigin* securityOrigin = executionContext->getSecurityOrigin();
if (securityOrigin->isUnique()) {
TaskRunnerHelper::get(TaskType::MiscPlatformAPI, executionContext)
- ->postTask(BLINK_FROM_HERE, StorageErrorCallback::createSameThreadTask(
- errorCallback, NotSupportedError));
+ ->postTask(BLINK_FROM_HERE,
+ StorageErrorCallback::createSameThreadTask(
+ errorCallback, NotSupportedError));
return;
}
@@ -96,16 +98,18 @@ void DeprecatedStorageQuota::requestQuota(ScriptState* scriptState,
storageType != WebStorageQuotaTypePersistent) {
// Unknown storage type is requested.
TaskRunnerHelper::get(TaskType::MiscPlatformAPI, executionContext)
- ->postTask(BLINK_FROM_HERE, StorageErrorCallback::createSameThreadTask(
- errorCallback, NotSupportedError));
+ ->postTask(BLINK_FROM_HERE,
+ StorageErrorCallback::createSameThreadTask(
+ errorCallback, NotSupportedError));
return;
}
StorageQuotaClient* client = StorageQuotaClient::from(executionContext);
if (!client) {
TaskRunnerHelper::get(TaskType::MiscPlatformAPI, executionContext)
- ->postTask(BLINK_FROM_HERE, StorageErrorCallback::createSameThreadTask(
- errorCallback, NotSupportedError));
+ ->postTask(BLINK_FROM_HERE,
+ StorageErrorCallback::createSameThreadTask(
+ errorCallback, NotSupportedError));
return;
}

Powered by Google App Engine
This is Rietveld 408576698