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

Unified Diff: chrome/browser/safe_browsing/safe_browsing_service.h

Issue 10383262: RefCounted types should not have public destructors, delegate cleanup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Make win bot happy Created 8 years, 6 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 | « chrome/browser/policy/policy_service.h ('k') | chrome/common/important_file_writer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/safe_browsing/safe_browsing_service.h
diff --git a/chrome/browser/safe_browsing/safe_browsing_service.h b/chrome/browser/safe_browsing/safe_browsing_service.h
index e6406d2fe0ad8e3b1f8afb96e42740c7b25e1273..4555f486246dad922c6ef553998cf893e494fa67 100644
--- a/chrome/browser/safe_browsing/safe_browsing_service.h
+++ b/chrome/browser/safe_browsing/safe_browsing_service.h
@@ -139,11 +139,11 @@ class SafeBrowsingService
class Client {
public:
- virtual ~Client() {}
-
void OnSafeBrowsingResult(const SafeBrowsingCheck& check);
protected:
+ virtual ~Client() {}
+
// Called when the result of checking a browse URL is known.
virtual void OnBrowseUrlCheckResult(const GURL& url,
UrlCheckResult result) {}
« no previous file with comments | « chrome/browser/policy/policy_service.h ('k') | chrome/common/important_file_writer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698