diff options
author | paulg@google.com <paulg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-21 01:24:01 +0000 |
---|---|---|
committer | paulg@google.com <paulg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-21 01:24:01 +0000 |
commit | 484c57ada96d1706d2e156163207185651226ec8 (patch) | |
tree | 428e295eff80a2cc5e40e54163c48db759c44057 /chrome/browser/safe_browsing/safe_browsing_service.h | |
parent | 5e1e00e850fd7e5a46c7ee79f5399b2bf25d553b (diff) | |
download | chromium_src-484c57ada96d1706d2e156163207185651226ec8.zip chromium_src-484c57ada96d1706d2e156163207185651226ec8.tar.gz chromium_src-484c57ada96d1706d2e156163207185651226ec8.tar.bz2 |
Remove the old and no longer used SafeBrowsing storage
implementation.
Review URL: http://codereview.chromium.org/45016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12238 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/safe_browsing/safe_browsing_service.h')
-rw-r--r-- | chrome/browser/safe_browsing/safe_browsing_service.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/chrome/browser/safe_browsing/safe_browsing_service.h b/chrome/browser/safe_browsing/safe_browsing_service.h index 89b1169..6eba443 100644 --- a/chrome/browser/safe_browsing/safe_browsing_service.h +++ b/chrome/browser/safe_browsing/safe_browsing_service.h @@ -100,9 +100,6 @@ class SafeBrowsingService // and "client" is called asynchronously with the result when it is ready. bool CheckUrl(const GURL& url, Client* client); - // For the new SafeBrowsingDatabase, which runs the check synchronously. - bool CheckUrlNew(const GURL& url, Client* client); - // Cancels a pending check if the result is no longer needed. void CancelCheck(Client* client); @@ -178,8 +175,6 @@ class SafeBrowsingService void OnSuspend(base::SystemMonitor*); void OnResume(base::SystemMonitor*); - bool new_safe_browsing() const { return new_safe_browsing_; } - // Report any pages that contain malware sub-resources to the SafeBrowsing // service. void ReportMalware(const GURL& malware_url, @@ -294,9 +289,6 @@ class SafeBrowsingService // Indicates if we are in the process of resetting the database. bool resetting_; - // Indicates if we are using the new bloom filter based database. - bool new_safe_browsing_; - // Indicates if the database has finished initialization. bool database_loaded_; |