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

Unified Diff: chrome/browser/search_engines/search_provider_install_state_message_filter.h

Issue 10071036: RefCounted types should not have public destructors, chrome/browser/ part 6 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Implementation 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
Index: chrome/browser/search_engines/search_provider_install_state_message_filter.h
diff --git a/chrome/browser/search_engines/search_provider_install_state_message_filter.h b/chrome/browser/search_engines/search_provider_install_state_message_filter.h
index f19aa9d0961f355687140d5b4b5967a355770ecc..4d6241b776578ffe8eebf6c60a4d52528ee36531 100644
--- a/chrome/browser/search_engines/search_provider_install_state_message_filter.h
+++ b/chrome/browser/search_engines/search_provider_install_state_message_filter.h
@@ -20,13 +20,14 @@ class SearchProviderInstallStateMessageFilter
// Unlike the other methods, the constructor is called on the UI thread.
SearchProviderInstallStateMessageFilter(int render_process_id,
Profile* profile);
- virtual ~SearchProviderInstallStateMessageFilter();
// content::BrowserMessageFilter implementation.
virtual bool OnMessageReceived(const IPC::Message& message,
bool* message_was_ok) OVERRIDE;
private:
+ virtual ~SearchProviderInstallStateMessageFilter();
+
// Figures out the install state for the search provider.
search_provider::InstallState GetSearchProviderInstallState(
const GURL& page_location,

Powered by Google App Engine
This is Rietveld 408576698