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

Unified Diff: webkit/browser/fileapi/quota/quota_reservation_manager.cc

Issue 61593002: Quota: Implement QuotaBackendImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix build and test Created 7 years, 1 month 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: webkit/browser/fileapi/quota/quota_reservation_manager.cc
diff --git a/webkit/browser/fileapi/quota/quota_reservation_manager.cc b/webkit/browser/fileapi/quota/quota_reservation_manager.cc
index 0a02940ab5a7de41707e95db35f50d16922729f4..ed12a829b075703f48ac56c58f14696b9dc02900 100644
--- a/webkit/browser/fileapi/quota/quota_reservation_manager.cc
+++ b/webkit/browser/fileapi/quota/quota_reservation_manager.cc
@@ -42,14 +42,14 @@ void QuotaReservationManager::CommitQuotaUsage(
backend_->CommitQuotaUsage(origin, type, delta, callback);
}
-void QuotaReservationManager::IncreaseDirtyCount(const GURL& origin,
+void QuotaReservationManager::IncrementDirtyCount(const GURL& origin,
FileSystemType type) {
- backend_->IncreaseDirtyCount(origin, type);
+ backend_->IncrementDirtyCount(origin, type);
}
-void QuotaReservationManager::DecreaseDirtyCount(const GURL& origin,
+void QuotaReservationManager::DecrementDirtyCount(const GURL& origin,
FileSystemType type) {
- backend_->DecreaseDirtyCount(origin, type);
+ backend_->DecrementDirtyCount(origin, type);
}
scoped_refptr<QuotaReservationBuffer>

Powered by Google App Engine
This is Rietveld 408576698