diff options
author | henrika@chromium.org <henrika@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-13 06:47:53 +0000 |
---|---|---|
committer | henrika@chromium.org <henrika@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-13 06:47:53 +0000 |
commit | d89b1c7693557c7f6efc4319d18a447ba71f9d17 (patch) | |
tree | 0b748a326a6e385d7853e44f7953206233ec6979 /chrome_elf | |
parent | 9a490860165a059046c61a32bb9e9fe37feb489f (diff) | |
download | chromium_src-d89b1c7693557c7f6efc4319d18a447ba71f9d17.zip chromium_src-d89b1c7693557c7f6efc4319d18a447ba71f9d17.tar.gz chromium_src-d89b1c7693557c7f6efc4319d18a447ba71f9d17.tar.bz2 |
Blacklists virtualCamera.ax.
Tries to avoid crash in media::CoreAudioUtil::CreateDeviceEnumerator by blacklisting a DLL which accounts for a large amount of crashes we see in CreateDeviceEnumerator.
BUG=383715, 378465
Review URL: https://codereview.chromium.org/325323003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@276946 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_elf')
-rw-r--r-- | chrome_elf/blacklist/blacklist.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome_elf/blacklist/blacklist.cc b/chrome_elf/blacklist/blacklist.cc index 5f3190f..1731144 100644 --- a/chrome_elf/blacklist/blacklist.cc +++ b/chrome_elf/blacklist/blacklist.cc @@ -33,6 +33,8 @@ const wchar_t* g_troublesome_dlls[kTroublesomeDllsMaxCount] = { L"windowsapihookdll32.dll", // Lenovo One Key Theater. L"activedetect64.dll", // Lenovo One Key Theater. L"windowsapihookdll64.dll", // Lenovo One Key Theater. + L"virtualCamera.ax", // %PROGRAMFILES%\ASUS\VirtualCamera. + // See crbug.com/383715. // Keep this null pointer here to mark the end of the list. NULL, }; |