Chromium Code Reviews| Index: chrome_elf/blacklist/blacklist.cc |
| diff --git a/chrome_elf/blacklist/blacklist.cc b/chrome_elf/blacklist/blacklist.cc |
| index 8107ffcab39abeaebde41f90c73a90beefc36ac4..9538fba6e28341ddde8b5dd1fcb2d37d2f65cbb7 100644 |
| --- a/chrome_elf/blacklist/blacklist.cc |
| +++ b/chrome_elf/blacklist/blacklist.cc |
| @@ -30,14 +30,17 @@ namespace blacklist{ |
| // of it, see: |
| // https://sites.google.com/a/chromium.org/dev/Home/third-party-developers |
| const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount] = { |
| + L"activedetect32.dll", // Lenovo One Key Theater. |
| + // See crbug.com/379218. |
| + L"activedetect64.dll", // Lenovo One Key Theater. |
| + L"bitguard.dll", // Unknown (suspected malware). |
| + L"chrmxtn.dll", // Unknown (keystroke logger). |
| L"datamngr.dll", // Unknown (suspected adware). |
| 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"systemk.dll", // Unknown (suspected adware). |
| L"windowsapihookdll32.dll", // Lenovo One Key Theater. |
|
csharp
2014/06/16 14:47:17
Please put "// See crbug.com/379218." on line 44,
krstnmnlsn
2014/06/16 17:42:22
I was wondering if I should do this. Done.
|
| - 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, |