diff options
author | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 08:12:57 +0000 |
---|---|---|
committer | benwells@chromium.org <benwells@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-01 08:12:57 +0000 |
commit | aec454416ace3ac53d95b2a00a4f89c2f5f443da (patch) | |
tree | 088611f077ab693d181c5ebd15fb7bcd3d8458b5 /chrome/installer | |
parent | 767171ee8e5d3acd62b21a100bde0b5437aace68 (diff) | |
download | chromium_src-aec454416ace3ac53d95b2a00a4f89c2f5f443da.zip chromium_src-aec454416ace3ac53d95b2a00a4f89c2f5f443da.tar.gz chromium_src-aec454416ace3ac53d95b2a00a4f89c2f5f443da.tar.bz2 |
Update Windows install to add capabilities for currently whitelisted rph schemes
The white list for registerProtocolHandlers schemes has been updated. This change makes Chrome
register as capable of handling all white listed schemes to minimise elevation dialogs coming
up when accepting new handlers.
BUG=94584
TEST=Manual testing performed
Review URL: http://codereview.chromium.org/7791014
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99158 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/util/shell_util.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/installer/util/shell_util.cc b/chrome/installer/util/shell_util.cc index c077b1d..7af6a9a 100644 --- a/chrome/installer/util/shell_util.cc +++ b/chrome/installer/util/shell_util.cc @@ -498,7 +498,8 @@ const wchar_t* ShellUtil::kFileAssociations[] = {L".htm", L".html", L".shtml", const wchar_t* ShellUtil::kBrowserProtocolAssociations[] = {L"ftp", L"http", L"https", NULL}; const wchar_t* ShellUtil::kPotentialProtocolAssociations[] = {L"ftp", L"http", - L"https", L"mailto", L"webcal", NULL}; + L"https", L"irc", L"mailto", L"mms", L"news", L"nntp", L"sms", L"smsto", + L"tel", L"urn", L"webcal", NULL}; const wchar_t* ShellUtil::kRegUrlProtocol = L"URL Protocol"; bool ShellUtil::AdminNeededForRegistryCleanup(BrowserDistribution* dist, |