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

Unified Diff: content/browser/appcache/appcache_working_set.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years 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/browser/appcache/appcache_working_set.h ('k') | content/browser/appcache/chrome_appcache_service.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/appcache/appcache_working_set.cc
diff --git a/content/browser/appcache/appcache_working_set.cc b/content/browser/appcache/appcache_working_set.cc
index 4394097aee09cd7d4f38928ec09ab98da674e3ec..646068406d23a0fe2624182a7b01659db7677a29 100644
--- a/content/browser/appcache/appcache_working_set.cc
+++ b/content/browser/appcache/appcache_working_set.cc
@@ -33,7 +33,7 @@ void AppCacheWorkingSet::AddCache(AppCache* cache) {
if (is_disabled_)
return;
DCHECK(cache->cache_id() != kAppCacheNoCacheId);
- int64 cache_id = cache->cache_id();
+ int64_t cache_id = cache->cache_id();
DCHECK(caches_.find(cache_id) == caches_.end());
caches_.insert(CacheMap::value_type(cache_id, cache));
}
@@ -68,7 +68,7 @@ void AppCacheWorkingSet::AddResponseInfo(AppCacheResponseInfo* info) {
if (is_disabled_)
return;
DCHECK(info->response_id() != kAppCacheNoResponseId);
- int64 response_id = info->response_id();
+ int64_t response_id = info->response_id();
DCHECK(response_infos_.find(response_id) == response_infos_.end());
response_infos_.insert(ResponseInfoMap::value_type(response_id, info));
}
« no previous file with comments | « content/browser/appcache/appcache_working_set.h ('k') | content/browser/appcache/chrome_appcache_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698