diff options
author | pastarmovj@chromium.org <pastarmovj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-25 12:36:37 +0000 |
---|---|---|
committer | pastarmovj@chromium.org <pastarmovj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-25 12:36:37 +0000 |
commit | 8b08a47f878f0ed77508d6c49bf4e593ea8f2bef (patch) | |
tree | 7575f86aa79e27ce1bb9c61a272c11dde474da6a /chrome/browser/browser_process.h | |
parent | 0f38dc4551ef947f74259b3e7c92b984bf554c60 (diff) | |
download | chromium_src-8b08a47f878f0ed77508d6c49bf4e593ea8f2bef.zip chromium_src-8b08a47f878f0ed77508d6c49bf4e593ea8f2bef.tar.gz chromium_src-8b08a47f878f0ed77508d6c49bf4e593ea8f2bef.tar.bz2 |
Implemented policy to disable plugin finder.
BUG=49597
TEST=Set the policy to true and the default plugin should not offer to install missing plugins.
Review URL: http://codereview.chromium.org/6475011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@76043 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r-- | chrome/browser/browser_process.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h index 28cc716..c1275db 100644 --- a/chrome/browser/browser_process.h +++ b/chrome/browser/browser_process.h @@ -165,6 +165,10 @@ class BrowserProcess { virtual safe_browsing::ClientSideDetectionService* safe_browsing_detection_service() = 0; + // Returns the state of the disable plugin finder policy. Callable only on + // the IO thread. + virtual bool plugin_finder_disabled() const = 0; + // Trigger an asynchronous check to see if we have the inspector's files on // disk. virtual void CheckForInspectorFiles() = 0; |