diff options
author | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-07 22:11:44 +0000 |
---|---|---|
committer | robertshield@chromium.org <robertshield@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-07 22:11:44 +0000 |
commit | 4811bfb0cf32b50bc206d2f5030eef697b84cafa (patch) | |
tree | 0916d259e74d38b763a8897533c4ad07fe92ec93 /chrome_frame | |
parent | 08248a9ad6625bce2f09ac92bcc11ab1d59d1534 (diff) | |
download | chromium_src-4811bfb0cf32b50bc206d2f5030eef697b84cafa.zip chromium_src-4811bfb0cf32b50bc206d2f5030eef697b84cafa.tar.gz chromium_src-4811bfb0cf32b50bc206d2f5030eef697b84cafa.tar.bz2 |
Add PxSecure.dll to the list of buggy BHOs to which Chrome Frame avoids firing events.
BUG=65748
TEST=Fewer crashes are received with PxSecure.dll at the top of the stack.
Review URL: http://codereview.chromium.org/5550004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68522 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/buggy_bho_handling.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome_frame/buggy_bho_handling.cc b/chrome_frame/buggy_bho_handling.cc index c32a5c6..0805033 100644 --- a/chrome_frame/buggy_bho_handling.cc +++ b/chrome_frame/buggy_bho_handling.cc @@ -35,6 +35,7 @@ const ModuleAndVersion kBuggyModules[] = { { "rpshell32.dll", 6, 0 }, // troublemaker: 6.0.6000.1389 { "msgsres.dll", 6, 0 }, // troublemaker: 6.0.6000.1389 { "limewireinttb.dll", 4, 1 }, // troublemaker: 4.1.1.1000 + { "pxsecure.dll", 3, 0 }, // troublemaker: 3.0.5.220 // These BHOs seem to be out of the same buggy BHO factory { "tbabso.dll", 4, 5 }, // troublemaker: 4.5.156.0 @@ -215,4 +216,3 @@ HRESULT BuggyBhoTls::PatchBuggyBHOs(IWebBrowser2* browser) { } } // end namespace buggy_bho - |