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

Unified Diff: content/public/common/appcache_info.h

Issue 358993007: Fix nits in content/browser/appcache/ (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
« no previous file with comments | « content/public/browser/storage_partition.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/common/appcache_info.h
diff --git a/content/public/common/appcache_info.h b/content/public/common/appcache_info.h
index f37e015f25d6373754e1641daf2d1ca522910924..436b193a9652e6b76d6f9296161c54ccb98b13c8 100644
--- a/content/public/common/appcache_info.h
+++ b/content/public/common/appcache_info.h
@@ -19,28 +19,28 @@ static const int64 kAppCacheNoResponseId = 0;
static const int64 kAppCacheUnknownCacheId = -1;
enum AppCacheStatus {
- APPCACHE_STATUS_UNCACHED,
- APPCACHE_STATUS_IDLE,
- APPCACHE_STATUS_CHECKING,
- APPCACHE_STATUS_DOWNLOADING,
- APPCACHE_STATUS_UPDATE_READY,
- APPCACHE_STATUS_OBSOLETE,
- APPCACHE_STATUS_LAST = APPCACHE_STATUS_OBSOLETE
+ APPCACHE_STATUS_UNCACHED,
+ APPCACHE_STATUS_IDLE,
+ APPCACHE_STATUS_CHECKING,
+ APPCACHE_STATUS_DOWNLOADING,
+ APPCACHE_STATUS_UPDATE_READY,
+ APPCACHE_STATUS_OBSOLETE,
+ APPCACHE_STATUS_LAST = APPCACHE_STATUS_OBSOLETE
};
struct CONTENT_EXPORT AppCacheInfo {
- AppCacheInfo();
- ~AppCacheInfo();
-
- GURL manifest_url;
- base::Time creation_time;
- base::Time last_update_time;
- base::Time last_access_time;
- int64 cache_id;
- int64 group_id;
- AppCacheStatus status;
- int64 size;
- bool is_complete;
+ AppCacheInfo();
+ ~AppCacheInfo();
+
+ GURL manifest_url;
+ base::Time creation_time;
+ base::Time last_update_time;
+ base::Time last_access_time;
+ int64 cache_id;
+ int64 group_id;
+ AppCacheStatus status;
+ int64 size;
+ bool is_complete;
};
typedef std::vector<AppCacheInfo> AppCacheInfoVector;
« no previous file with comments | « content/public/browser/storage_partition.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698