| Index: content/browser/appcache/appcache_dispatcher_host.h
|
| diff --git a/content/browser/appcache/appcache_dispatcher_host.h b/content/browser/appcache/appcache_dispatcher_host.h
|
| index f8909a88125a49ffc17087eac6727398e4485890..4181b4398eb43817901140acb7fb6371869998d3 100644
|
| --- a/content/browser/appcache/appcache_dispatcher_host.h
|
| +++ b/content/browser/appcache/appcache_dispatcher_host.h
|
| @@ -5,8 +5,11 @@
|
| #ifndef CONTENT_BROWSER_APPCACHE_APPCACHE_DISPATCHER_HOST_H_
|
| #define CONTENT_BROWSER_APPCACHE_APPCACHE_DISPATCHER_HOST_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -28,7 +31,7 @@ class AppCacheDispatcherHost : public BrowserMessageFilter {
|
| int process_id);
|
|
|
| // BrowserIOMessageFilter implementation
|
| - void OnChannelConnected(int32 peer_pid) override;
|
| + void OnChannelConnected(int32_t peer_pid) override;
|
| bool OnMessageReceived(const IPC::Message& message) override;
|
|
|
| protected:
|
| @@ -39,14 +42,16 @@ class AppCacheDispatcherHost : public BrowserMessageFilter {
|
| void OnRegisterHost(int host_id);
|
| void OnUnregisterHost(int host_id);
|
| void OnSetSpawningHostId(int host_id, int spawning_host_id);
|
| - void OnSelectCache(int host_id, const GURL& document_url,
|
| - int64 cache_document_was_loaded_from,
|
| + void OnSelectCache(int host_id,
|
| + const GURL& document_url,
|
| + int64_t cache_document_was_loaded_from,
|
| const GURL& opt_manifest_url);
|
| void OnSelectCacheForWorker(int host_id, int parent_process_id,
|
| int parent_host_id);
|
| - void OnSelectCacheForSharedWorker(int host_id, int64 appcache_id);
|
| - void OnMarkAsForeignEntry(int host_id, const GURL& document_url,
|
| - int64 cache_document_was_loaded_from);
|
| + void OnSelectCacheForSharedWorker(int host_id, int64_t appcache_id);
|
| + void OnMarkAsForeignEntry(int host_id,
|
| + const GURL& document_url,
|
| + int64_t cache_document_was_loaded_from);
|
| void OnGetStatus(int host_id, IPC::Message* reply_msg);
|
| void OnStartUpdate(int host_id, IPC::Message* reply_msg);
|
| void OnSwapCache(int host_id, IPC::Message* reply_msg);
|
|
|