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

Unified Diff: content/child/appcache/appcache_backend_proxy.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
Index: content/child/appcache/appcache_backend_proxy.cc
diff --git a/content/child/appcache/appcache_backend_proxy.cc b/content/child/appcache/appcache_backend_proxy.cc
index bf3149409f9cb9a9fca9b41090bf85a623d6bd19..c6b7ebd30d124921d2b0832e4c9ef155a075d55a 100644
--- a/content/child/appcache/appcache_backend_proxy.cc
+++ b/content/child/appcache/appcache_backend_proxy.cc
@@ -25,7 +25,7 @@ void AppCacheBackendProxy::SetSpawningHostId(int host_id,
void AppCacheBackendProxy::SelectCache(
int host_id,
const GURL& document_url,
- const int64 cache_document_was_loaded_from,
+ const int64_t cache_document_was_loaded_from,
const GURL& manifest_url) {
sender_->Send(new AppCacheHostMsg_SelectCache(
host_id, document_url,
@@ -40,15 +40,16 @@ void AppCacheBackendProxy::SelectCacheForWorker(
parent_host_id));
}
-void AppCacheBackendProxy::SelectCacheForSharedWorker(
- int host_id, int64 appcache_id) {
+void AppCacheBackendProxy::SelectCacheForSharedWorker(int host_id,
+ int64_t appcache_id) {
sender_->Send(new AppCacheHostMsg_SelectCacheForSharedWorker(
host_id, appcache_id));
}
void AppCacheBackendProxy::MarkAsForeignEntry(
- int host_id, const GURL& document_url,
- int64 cache_document_was_loaded_from) {
+ int host_id,
+ const GURL& document_url,
+ int64_t cache_document_was_loaded_from) {
sender_->Send(new AppCacheHostMsg_MarkAsForeignEntry(
host_id, document_url,
cache_document_was_loaded_from));
« no previous file with comments | « content/child/appcache/appcache_backend_proxy.h ('k') | content/child/appcache/web_application_cache_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698