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

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

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.h
diff --git a/content/child/appcache/appcache_backend_proxy.h b/content/child/appcache/appcache_backend_proxy.h
index ee41cb933feb7421eae479f97f0964f7bb41ecfb..9c929c981b426166fb6b7eaf6aa6f65d107f848b 100644
--- a/content/child/appcache/appcache_backend_proxy.h
+++ b/content/child/appcache/appcache_backend_proxy.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_CHILD_APPCACHE_APPCACHE_BACKEND_PROXY_H_
#define CONTENT_CHILD_APPCACHE_APPCACHE_BACKEND_PROXY_H_
+#include <stdint.h>
+
#include <vector>
#include "content/common/appcache_interfaces.h"
@@ -25,15 +27,15 @@ class AppCacheBackendProxy : public AppCacheBackend {
void SetSpawningHostId(int host_id, int spawning_host_id) override;
void 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) override;
void SelectCacheForWorker(int host_id,
int parent_process_id,
int parent_host_id) override;
- void SelectCacheForSharedWorker(int host_id, int64 appcache_id) override;
+ void SelectCacheForSharedWorker(int host_id, int64_t appcache_id) override;
void MarkAsForeignEntry(int host_id,
const GURL& document_url,
- int64 cache_document_was_loaded_from) override;
+ int64_t cache_document_was_loaded_from) override;
AppCacheStatus GetStatus(int host_id) override;
bool StartUpdate(int host_id) override;
bool SwapCache(int host_id) override;

Powered by Google App Engine
This is Rietveld 408576698