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

Unified Diff: third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp

Issue 2396573002: reflow comments in modules/[presentation,storage] (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/quota/DeprecatedStorageInfo.cpp
diff --git a/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp b/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp
index 2cda457f9848ac924bcf72fbd227eb8238ad2e35..60b3a175d1d9002a27c7ee89aa1830281eeafd8e 100644
--- a/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp
+++ b/third_party/WebKit/Source/modules/quota/DeprecatedStorageInfo.cpp
@@ -47,7 +47,8 @@ void DeprecatedStorageInfo::queryUsageAndQuota(
int storageType,
StorageUsageCallback* successCallback,
StorageErrorCallback* errorCallback) {
- // Dispatching the request to DeprecatedStorageQuota, as this interface is deprecated in favor of DeprecatedStorageQuota.
+ // Dispatching the request to DeprecatedStorageQuota, as this interface is
+ // deprecated in favor of DeprecatedStorageQuota.
DeprecatedStorageQuota* storageQuota = getStorageQuota(storageType);
if (!storageQuota) {
// Unknown storage type is requested.
@@ -65,7 +66,8 @@ void DeprecatedStorageInfo::requestQuota(ExecutionContext* executionContext,
unsigned long long newQuotaInBytes,
StorageQuotaCallback* successCallback,
StorageErrorCallback* errorCallback) {
- // Dispatching the request to DeprecatedStorageQuota, as this interface is deprecated in favor of DeprecatedStorageQuota.
+ // Dispatching the request to DeprecatedStorageQuota, as this interface is
+ // deprecated in favor of DeprecatedStorageQuota.
DeprecatedStorageQuota* storageQuota = getStorageQuota(storageType);
if (!storageQuota) {
// Unknown storage type is requested.

Powered by Google App Engine
This is Rietveld 408576698