diff options
author | joaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-18 22:21:46 +0000 |
---|---|---|
committer | joaodasilva@chromium.org <joaodasilva@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-18 22:21:46 +0000 |
commit | 419a0571dda6e5cc297331c845f68da7485302da (patch) | |
tree | 84f08f760b5023b8ab725b3e0dc0d6501a795181 /chrome/common | |
parent | f2ee14875f7f7945613b7224e377467c2a864bee (diff) | |
download | chromium_src-419a0571dda6e5cc297331c845f68da7485302da.zip chromium_src-419a0571dda6e5cc297331c845f68da7485302da.tar.gz chromium_src-419a0571dda6e5cc297331c845f68da7485302da.tar.bz2 |
Added DisabledSchemes policy.
This is a list of strings. Any protocol scheme listed in this policy is
disabled, and URLs using that scheme won't load (either from the Omnibar, links,
bookmarks, or when requested from the renderer to the browser).
Also introduced ListPrefMember, to track a ListValue preference.
"Virtual" or "pseudo" protocol schemes such as "about" and "view-source" are
also handled.
BUG=57477
TEST=unit_tests, use a policy to disable specific schemes (e.g. "file", "ftp")
Review URL: http://codereview.chromium.org/6712065
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@82013 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/pref_names.cc | 3 | ||||
-rw-r--r-- | chrome/common/pref_names.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc index cd65e1d..067fcab 100644 --- a/chrome/common/pref_names.cc +++ b/chrome/common/pref_names.cc @@ -246,6 +246,9 @@ const char kDnsPrefetchingHostReferralList[] = // Disables the SPDY protocol. const char kDisableSpdy[] = "spdy.disabled"; +// Disables the listed protocol schemes. +const char kDisabledSchemes[] = "protocol.disabled_schemes"; + // Boolean pref indicating whether the instant confirm dialog has been shown. const char kInstantConfirmDialogShown[] = "instant.confirm_dialog_shown"; diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index fd714ba..e00df1e 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -85,6 +85,7 @@ extern const char kDnsPrefetchingStartupList[]; extern const char kDnsHostReferralList[]; // OBSOLETE extern const char kDnsPrefetchingHostReferralList[]; extern const char kDisableSpdy[]; +extern const char kDisabledSchemes[]; extern const char kInstantConfirmDialogShown[]; extern const char kInstantEnabled[]; extern const char kInstantEnabledOnce[]; |