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

Unified Diff: remoting/base/plugin_message_loop_proxy.h

Issue 9997007: Objects that derive from RefCounted/RefCountedThreadSafe should not have public dtors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: virtual & DISALLOW 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 | « base/threading/worker_pool_posix.h ('k') | webkit/dom_storage/dom_storage_task_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/base/plugin_message_loop_proxy.h
diff --git a/remoting/base/plugin_message_loop_proxy.h b/remoting/base/plugin_message_loop_proxy.h
index 33da94be26dddb9a4afc3aaab65cf4f9391aa819..23e2c7a8a0fb6c7ba904ddb2bb557476ec3738e8 100644
--- a/remoting/base/plugin_message_loop_proxy.h
+++ b/remoting/base/plugin_message_loop_proxy.h
@@ -27,7 +27,6 @@ class PluginMessageLoopProxy : public base::MessageLoopProxy {
// Caller keeps ownership of delegate.
PluginMessageLoopProxy(Delegate* delegate);
- virtual ~PluginMessageLoopProxy();
void Detach();
@@ -51,6 +50,9 @@ class PluginMessageLoopProxy : public base::MessageLoopProxy {
virtual bool RunsTasksOnCurrentThread() const OVERRIDE;
+ protected:
+ virtual ~PluginMessageLoopProxy();
+
private:
static void TaskSpringboard(void* data);
« no previous file with comments | « base/threading/worker_pool_posix.h ('k') | webkit/dom_storage/dom_storage_task_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698