OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome_elf/blacklist/blacklist.h" | 5 #include "chrome_elf/blacklist/blacklist.h" |
6 | 6 |
7 #include <assert.h> | 7 #include <assert.h> |
8 #include <string.h> | 8 #include <string.h> |
9 | 9 |
10 #include <vector> | 10 #include <vector> |
(...skipping 15 matching lines...) Expand all Loading... |
26 const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount] = { | 26 const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount] = { |
27 L"datamngr.dll", // Unknown (suspected adware). | 27 L"datamngr.dll", // Unknown (suspected adware). |
28 L"hk.dll", // Unknown (keystroke logger). | 28 L"hk.dll", // Unknown (keystroke logger). |
29 L"libsvn_tsvn32.dll", // TortoiseSVN. | 29 L"libsvn_tsvn32.dll", // TortoiseSVN. |
30 L"lmrn.dll", // Unknown. | 30 L"lmrn.dll", // Unknown. |
31 L"activedetect32.dll", // Lenovo One Key Theater. | 31 L"activedetect32.dll", // Lenovo One Key Theater. |
32 // See crbug.com/379218. | 32 // See crbug.com/379218. |
33 L"windowsapihookdll32.dll", // Lenovo One Key Theater. | 33 L"windowsapihookdll32.dll", // Lenovo One Key Theater. |
34 L"activedetect64.dll", // Lenovo One Key Theater. | 34 L"activedetect64.dll", // Lenovo One Key Theater. |
35 L"windowsapihookdll64.dll", // Lenovo One Key Theater. | 35 L"windowsapihookdll64.dll", // Lenovo One Key Theater. |
| 36 L"virtualCamera.ax", // %PROGRAMFILES%\ASUS\VirtualCamera. |
| 37 // See crbug.com/383715. |
36 // Keep this null pointer here to mark the end of the list. | 38 // Keep this null pointer here to mark the end of the list. |
37 NULL, | 39 NULL, |
38 }; | 40 }; |
39 | 41 |
40 bool g_blocked_dlls[kTroublesomeDllsMaxCount] = {}; | 42 bool g_blocked_dlls[kTroublesomeDllsMaxCount] = {}; |
41 int g_num_blocked_dlls = 0; | 43 int g_num_blocked_dlls = 0; |
42 | 44 |
43 } // namespace blacklist | 45 } // namespace blacklist |
44 | 46 |
45 // Allocate storage for thunks in a page of this module to save on doing | 47 // Allocate storage for thunks in a page of this module to save on doing |
(...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
388 } | 390 } |
389 | 391 |
390 // Delete the finch registry key to clear the values. | 392 // Delete the finch registry key to clear the values. |
391 result = ::RegDeleteKey(key, L""); | 393 result = ::RegDeleteKey(key, L""); |
392 | 394 |
393 ::RegCloseKey(key); | 395 ::RegCloseKey(key); |
394 return result == ERROR_SUCCESS; | 396 return result == ERROR_SUCCESS; |
395 } | 397 } |
396 | 398 |
397 } // namespace blacklist | 399 } // namespace blacklist |
OLD | NEW |