summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwfh@chromium.org <wfh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-09 21:32:17 +0000
committerwfh@chromium.org <wfh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-09 21:32:17 +0000
commit1b8433765e4209f79f85d0de55497221d09cdb93 (patch)
tree1ab6b322385ad63f3be636dccc0082c2a06ae24f
parent8684893d2624de4e7dff25d31bb7423fb2dbb28a (diff)
downloadchromium_src-1b8433765e4209f79f85d0de55497221d09cdb93.zip
chromium_src-1b8433765e4209f79f85d0de55497221d09cdb93.tar.gz
chromium_src-1b8433765e4209f79f85d0de55497221d09cdb93.tar.bz2
Add "One Key Theater" DLLs to the browser DLL blacklist.
These DLLs were causing major instabilities on Stable Channel. BUG=379218 NOTRY=true Review URL: https://codereview.chromium.org/320653003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@275859 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome_elf/blacklist/blacklist.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome_elf/blacklist/blacklist.cc b/chrome_elf/blacklist/blacklist.cc
index c42f682..5f3190f 100644
--- a/chrome_elf/blacklist/blacklist.cc
+++ b/chrome_elf/blacklist/blacklist.cc
@@ -28,6 +28,11 @@ const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount] = {
L"hk.dll", // Unknown (keystroke logger).
L"libsvn_tsvn32.dll", // TortoiseSVN.
L"lmrn.dll", // Unknown.
+ L"activedetect32.dll", // Lenovo One Key Theater.
+ // See crbug.com/379218.
+ L"windowsapihookdll32.dll", // Lenovo One Key Theater.
+ L"activedetect64.dll", // Lenovo One Key Theater.
+ L"windowsapihookdll64.dll", // Lenovo One Key Theater.
// Keep this null pointer here to mark the end of the list.
NULL,
};