summaryrefslogtreecommitdiffstats
path: root/chrome/browser/browser_process.h
diff options
context:
space:
mode:
authornoelutz@google.com <noelutz@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-09 23:39:51 +0000
committernoelutz@google.com <noelutz@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-09 23:39:51 +0000
commita7a5e99010728cca53432ef392a44ce392c73353 (patch)
tree62250e23c35ab69bbc6a896ec33bf441470ee922 /chrome/browser/browser_process.h
parent0f2a30dbc1bf1d99adc0a67008e85550bff4fa9d (diff)
downloadchromium_src-a7a5e99010728cca53432ef392a44ce392c73353.zip
chromium_src-a7a5e99010728cca53432ef392a44ce392c73353.tar.gz
chromium_src-a7a5e99010728cca53432ef392a44ce392c73353.tar.bz2
Send phishing model from the browser to the renderer.
BUG=None TEST=None Review URL: http://codereview.chromium.org/5206006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68791 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r--chrome/browser/browser_process.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h
index ecf3003..b9510a8 100644
--- a/chrome/browser/browser_process.h
+++ b/chrome/browser/browser_process.h
@@ -18,6 +18,11 @@
#include "ipc/ipc_message.h"
class AutomationProviderList;
+
+namespace safe_browsing {
+class ClientSideDetectionService;
+}
+
class Clipboard;
class DevToolsManager;
class DownloadRequestLimiter;
@@ -140,6 +145,11 @@ class BrowserProcess {
// Returns the object that watches for changes in the closeable state of tab.
virtual TabCloseableStateWatcher* tab_closeable_state_watcher() = 0;
+ // Returns an object which handles communication with the SafeBrowsing
+ // client-side detection servers.
+ virtual safe_browsing::ClientSideDetectionService*
+ safe_browsing_detection_service() = 0;
+
// Trigger an asynchronous check to see if we have the inspector's files on
// disk.
virtual void CheckForInspectorFiles() = 0;