| 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 0ba101b4cbdc97404017dd8bf4543675a4579db8..f9bb5f4966019abba74ac6de691ba54bcc4330c3 100644
|
| --- a/content/browser/appcache/appcache_dispatcher_host.h
|
| +++ b/content/browser/appcache/appcache_dispatcher_host.h
|
| @@ -25,17 +25,19 @@ class AppCacheDispatcherHost : public content::BrowserMessageFilter {
|
| public:
|
| AppCacheDispatcherHost(ChromeAppCacheService* appcache_service,
|
| int process_id);
|
| - virtual ~AppCacheDispatcherHost();
|
|
|
| // BrowserIOMessageFilter implementation
|
| virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
|
| virtual bool OnMessageReceived(const IPC::Message& message,
|
| bool* message_was_ok) OVERRIDE;
|
|
|
| - private:
|
| + protected:
|
| + virtual ~AppCacheDispatcherHost();
|
| +
|
| // content::BrowserMessageFilter override.
|
| virtual void BadMessageReceived() OVERRIDE;
|
|
|
| + private:
|
| // IPC message handlers
|
| void OnRegisterHost(int host_id);
|
| void OnUnregisterHost(int host_id);
|
|
|