| Index: content/browser/appcache/appcache_frontend_proxy.h
|
| diff --git a/content/browser/appcache/appcache_frontend_proxy.h b/content/browser/appcache/appcache_frontend_proxy.h
|
| index 03592ee4c45a2f0c4587404b711af4ff8784734f..d16a8f04cd298a4521a17a42fd2a67143d02fa96 100644
|
| --- a/content/browser/appcache/appcache_frontend_proxy.h
|
| +++ b/content/browser/appcache/appcache_frontend_proxy.h
|
| @@ -9,13 +9,13 @@
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "ipc/ipc_message.h"
|
| +#include "ipc/ipc_sender.h"
|
| #include "webkit/appcache/appcache_interfaces.h"
|
|
|
| // Sends appcache related messages to a child process.
|
| class AppCacheFrontendProxy : public appcache::AppCacheFrontend {
|
| public:
|
| - explicit AppCacheFrontendProxy(IPC::Message::Sender* sender);
|
| + explicit AppCacheFrontendProxy(IPC::Sender* sender);
|
|
|
| // AppCacheFrontend methods
|
| virtual void OnCacheSelected(int host_id,
|
| @@ -35,7 +35,7 @@ class AppCacheFrontendProxy : public appcache::AppCacheFrontend {
|
| const GURL& manifest_url) OVERRIDE;
|
|
|
| private:
|
| - IPC::Message::Sender* sender_;
|
| + IPC::Sender* sender_;
|
| };
|
|
|
| #endif // CONTENT_BROWSER_APPCACHE_APPCACHE_FRONTEND_PROXY_H_
|
|
|