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

Unified Diff: webkit/browser/appcache/appcache_group.h

Issue 330053004: Rename some appcache types in preparation for moving to content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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: webkit/browser/appcache/appcache_group.h
diff --git a/webkit/browser/appcache/appcache_group.h b/webkit/browser/appcache/appcache_group.h
index 04bbd107c9451557d68c009c885f7ae4c9f40757..68cdb2ac44aceab32521e70e369c3a65f3fbe14b 100644
--- a/webkit/browser/appcache/appcache_group.h
+++ b/webkit/browser/appcache/appcache_group.h
@@ -48,7 +48,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheGroup
virtual ~UpdateObserver() {}
};
- enum UpdateStatus {
+ enum UpdateAppCacheStatus {
IDLE,
CHECKING,
DOWNLOADING,
@@ -80,7 +80,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheGroup
void AddNewlyDeletableResponseIds(std::vector<int64>* response_ids);
- UpdateStatus update_status() const { return update_status_; }
+ UpdateAppCacheStatus update_status() const { return update_status_; }
// Starts an update via update() javascript API.
void StartUpdate() {
@@ -117,7 +117,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheGroup
static const int kUpdateRestartDelayMs = 1000;
AppCacheUpdateJob* update_job() { return update_job_; }
- void SetUpdateStatus(UpdateStatus status);
+ void SetUpdateAppCacheStatus(UpdateAppCacheStatus status);
void NotifyContentBlocked();
@@ -134,7 +134,7 @@ class WEBKIT_STORAGE_BROWSER_EXPORT AppCacheGroup
const int64 group_id_;
const GURL manifest_url_;
base::Time creation_time_;
- UpdateStatus update_status_;
+ UpdateAppCacheStatus update_status_;
bool is_obsolete_;
bool is_being_deleted_;
std::vector<int64> newly_deletable_response_ids_;

Powered by Google App Engine
This is Rietveld 408576698