diff options
author | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-06 02:33:32 +0000 |
---|---|---|
committer | cevans@chromium.org <cevans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-06 02:33:32 +0000 |
commit | 2e2392b161702bd41f3a0058afd3786a912dfd3b (patch) | |
tree | ce4b390fbb0f651e456b671a6d12adccceeb981d | |
parent | bdeeb855365fa7fddf5f0d88997843b5e48fe575 (diff) | |
download | chromium_src-2e2392b161702bd41f3a0058afd3786a912dfd3b.zip chromium_src-2e2392b161702bd41f3a0058afd3786a912dfd3b.tar.gz chromium_src-2e2392b161702bd41f3a0058afd3786a912dfd3b.tar.bz2 |
Add pyw, ini, cfg to the dangerous extensions list.
BUG=130844,122469
Review URL: https://chromiumcodereview.appspot.com/10538019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@140702 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/download/download_extensions.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/download/download_extensions.cc b/chrome/browser/download/download_extensions.cc index 612fcea..50f4153 100644 --- a/chrome/browser/download/download_extensions.cc +++ b/chrome/browser/download/download_extensions.cc @@ -74,6 +74,7 @@ static const struct Executables { { "xfd", AllowOnUserGesture }, { "pl", AllowOnUserGesture }, { "py", AllowOnUserGesture }, + { "pyw", AllowOnUserGesture }, { "rb", AllowOnUserGesture }, { "shtm", AllowOnUserGesture }, { "shtml", AllowOnUserGesture }, @@ -95,6 +96,7 @@ static const struct Executables { { "asx", AllowOnUserGesture }, { "bas", AllowOnUserGesture }, { "bat", AllowOnUserGesture }, + { "cfg", Dangerous }, { "chi", AllowOnUserGesture }, { "chm", AllowOnUserGesture }, { "cmd", AllowOnUserGesture }, @@ -110,6 +112,7 @@ static const struct Executables { { "hta", AllowOnUserGesture }, { "htt", AllowOnUserGesture }, { "inf", AllowOnUserGesture }, + { "ini", Dangerous }, { "ins", AllowOnUserGesture }, { "isp", AllowOnUserGesture }, { "js", AllowOnUserGesture }, |