| Index: content/browser/appcache/appcache_service_impl.h
|
| diff --git a/content/browser/appcache/appcache_service_impl.h b/content/browser/appcache/appcache_service_impl.h
|
| index d4efb64b233fc11aa18968ecd8d43cad70b99f3e..acc660f7ae20e17533dd03dbcebf9ebfeea5684b 100644
|
| --- a/content/browser/appcache/appcache_service_impl.h
|
| +++ b/content/browser/appcache/appcache_service_impl.h
|
| @@ -5,10 +5,13 @@
|
| #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_SERVICE_IMPL_H_
|
| #define CONTENT_BROWSER_APPCACHE_APPCACHE_SERVICE_IMPL_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <map>
|
| #include <set>
|
|
|
| #include "base/gtest_prod_util.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/observer_list.h"
|
| @@ -112,8 +115,9 @@ class CONTENT_EXPORT AppCacheServiceImpl
|
|
|
| // Checks the integrity of 'response_id' by reading the headers and data.
|
| // If it cannot be read, the cache group for 'manifest_url' is deleted.
|
| - void CheckAppCacheResponse(const GURL& manifest_url, int64 cache_id,
|
| - int64 response_id);
|
| + void CheckAppCacheResponse(const GURL& manifest_url,
|
| + int64_t cache_id,
|
| + int64_t response_id);
|
|
|
| // Context for use during cache updates, should only be accessed
|
| // on the IO thread. We do NOT add a reference to the request context,
|
|
|