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

Unified Diff: content/browser/appcache/appcache_dispatcher_host.h

Issue 10068037: RefCounted types should not have public destructors, content/browser part 1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MSVC fixes Created 8 years, 8 months 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
« no previous file with comments | « no previous file | content/browser/appcache/appcache_dispatcher_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | content/browser/appcache/appcache_dispatcher_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698