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)); |