summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process_impl.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-02 17:15:34 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-02 17:15:34 +0000
commit462a0ff505f9b9ff66e50939dda900f299a9812b (patch)
treeff3f29433e9f0825cdf39bd1e3114c2b1f0e4ba7 /chrome/browser/browser_process_impl.h
parent2333dc133b729f52319edd228f768a5634d040c1 (diff)
downloadchromium_src-462a0ff505f9b9ff66e50939dda900f299a9812b.zip
chromium_src-462a0ff505f9b9ff66e50939dda900f299a9812b.tar.gz
chromium_src-462a0ff505f9b9ff66e50939dda900f299a9812b.tar.bz2
Remove last safebrowsing references from content.
BUG=77089 Review URL: http://codereview.chromium.org/7108003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@87622 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process_impl.h')
-rw-r--r--chrome/browser/browser_process_impl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
index 2173970..4ef933f 100644
--- a/chrome/browser/browser_process_impl.h
+++ b/chrome/browser/browser_process_impl.h
@@ -95,6 +95,7 @@ class BrowserProcessImpl : public BrowserProcess,
virtual TabCloseableStateWatcher* tab_closeable_state_watcher();
virtual BackgroundModeManager* background_mode_manager();
virtual StatusTray* status_tray();
+ virtual SafeBrowsingService* safe_browsing_service();
virtual safe_browsing::ClientSideDetectionService*
safe_browsing_detection_service();
virtual bool plugin_finder_disabled() const;
@@ -152,6 +153,7 @@ class BrowserProcessImpl : public BrowserProcess,
void CreateTabCloseableStateWatcher();
void CreatePrintPreviewTabController();
void CreateBackgroundPrintingManager();
+ void CreateSafeBrowsingService();
void CreateSafeBrowsingDetectionService();
void CreateStatusTray();
void CreateBackgroundModeManager();
@@ -247,6 +249,9 @@ class BrowserProcessImpl : public BrowserProcess,
scoped_ptr<StatusTray> status_tray_;
+ bool created_safe_browsing_service_;
+ scoped_refptr<SafeBrowsingService> safe_browsing_service_;
+
bool created_safe_browsing_detection_service_;
scoped_ptr<safe_browsing::ClientSideDetectionService>
safe_browsing_detection_service_;