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

Unified Diff: content/common/indexed_db/indexed_db_message_filter.cc

Issue 10071038: RefCounted types should not have public destructors, content/browser part 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright bump 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 | « content/common/indexed_db/indexed_db_message_filter.h ('k') | content/gpu/gpu_watchdog_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/indexed_db/indexed_db_message_filter.cc
diff --git a/content/common/indexed_db/indexed_db_message_filter.cc b/content/common/indexed_db/indexed_db_message_filter.cc
index b01aefab1596570e5fe2aa7ec783aceef207ada7..66a0fc6fe71ff907eb49cc87f0d8bb9c058d65b6 100644
--- a/content/common/indexed_db/indexed_db_message_filter.cc
+++ b/content/common/indexed_db/indexed_db_message_filter.cc
@@ -16,9 +16,6 @@ IndexedDBMessageFilter::IndexedDBMessageFilter() :
main_thread_loop_proxy_(base::MessageLoopProxy::current()) {
}
-IndexedDBMessageFilter::~IndexedDBMessageFilter() {
-}
-
bool IndexedDBMessageFilter::OnMessageReceived(const IPC::Message& msg) {
if (IPC_MESSAGE_CLASS(msg) != IndexedDBMsgStart)
return false;
@@ -32,6 +29,8 @@ bool IndexedDBMessageFilter::OnMessageReceived(const IPC::Message& msg) {
return true;
}
+IndexedDBMessageFilter::~IndexedDBMessageFilter() {}
+
void IndexedDBMessageFilter::DispatchMessage(const IPC::Message& msg) {
IndexedDBDispatcher::ThreadSpecificInstance()->OnMessageReceived(msg);
}
« no previous file with comments | « content/common/indexed_db/indexed_db_message_filter.h ('k') | content/gpu/gpu_watchdog_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698