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

Unified Diff: webkit/quota/quota_manager.h

Issue 14237003: Rename SpecialStoragePolicy::IsInstalledApp() to CanQueryDiskSize() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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
« no previous file with comments | « webkit/quota/mock_special_storage_policy.cc ('k') | webkit/quota/quota_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/quota/quota_manager.h
diff --git a/webkit/quota/quota_manager.h b/webkit/quota/quota_manager.h
index 8bcaae5374c1b1d46ac1367d0158c18d15385bd0..a5f0fe28e48ced5ddbcfd0d15bcd876f26e83070 100644
--- a/webkit/quota/quota_manager.h
+++ b/webkit/quota/quota_manager.h
@@ -202,9 +202,9 @@ class WEBKIT_STORAGE_EXPORT QuotaManager
bool IsStorageUnlimited(const GURL& origin, StorageType type) const;
- bool IsInstalledApp(const GURL& origin) const {
+ bool CanQueryDiskSize(const GURL& origin) const {
return special_storage_policy_.get() &&
- special_storage_policy_->IsInstalledApp(origin);
+ special_storage_policy_->CanQueryDiskSize(origin);
}
virtual void GetOriginsModifiedSince(StorageType type,
« no previous file with comments | « webkit/quota/mock_special_storage_policy.cc ('k') | webkit/quota/quota_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698