diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-13 18:58:03 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-10-13 18:58:03 +0000 |
commit | 2dd6eb4df9d17a30e7a59a44ba5fbaa7c0046466 (patch) | |
tree | 6f765d1fd79ea19622c2ab4b932301f04258be64 /webkit | |
parent | 7560500adc415736cf47cef3c151f605d0750c14 (diff) | |
download | chromium_src-2dd6eb4df9d17a30e7a59a44ba5fbaa7c0046466.zip chromium_src-2dd6eb4df9d17a30e7a59a44ba5fbaa7c0046466.tar.gz chromium_src-2dd6eb4df9d17a30e7a59a44ba5fbaa7c0046466.tar.bz2 |
This fixes a regression introduced by my fix for http://code.google.com/p/chromium/issues/detail?id=2846 (Revision 3262).
The one to one mapping between mime types and supported extensions, which
enables us to look up a plugin based on a URL extension regressed as a result
of the above change.
R=jam
Review URL: http://codereview.chromium.org/7272
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3300 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/plugins/plugin_lib.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/glue/plugins/plugin_lib.cc b/webkit/glue/plugins/plugin_lib.cc index b435f3f..f02cb91 100644 --- a/webkit/glue/plugins/plugin_lib.cc +++ b/webkit/glue/plugins/plugin_lib.cc @@ -67,7 +67,7 @@ PluginLib* PluginLib::CreatePluginLib(const std::wstring& filename) { L"application/x-ms-wmp|application/asx|video/x-ms-asf-plugin|" L"application/x-mplayer2|video/x-ms-asf|video/x-ms-wm|audio/x-ms-wma|" L"audio/x-ms-wax|video/x-ms-wmv|video/x-ms-wvx", - L"*|*|*|*|*|*|asf,asx,*|wm,*|wma,*|wax,*|wmv,*|wvx,*", + L"*|*|*|*|asf,asx,*|wm,*|wma,*|wax,*|wmv,*|wvx,*", L"" }, activex_shim::ActiveX_Shim_NP_GetEntryPoints, |