| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/common/sandbox_win.h" | 5 #include "content/common/sandbox_win.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/base_switches.h" | 9 #include "base/base_switches.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 L"assistant_x64.dll", // Unknown. | 50 L"assistant_x64.dll", // Unknown. |
| 51 L"avcuf64.dll", // Bit Defender Internet Security x64. | 51 L"avcuf64.dll", // Bit Defender Internet Security x64. |
| 52 L"avgrsstx.dll", // AVG 8. | 52 L"avgrsstx.dll", // AVG 8. |
| 53 L"babylonchromepi.dll", // Babylon translator. | 53 L"babylonchromepi.dll", // Babylon translator. |
| 54 L"btkeyind.dll", // Widcomm Bluetooth. | 54 L"btkeyind.dll", // Widcomm Bluetooth. |
| 55 L"cmcsyshk.dll", // CMC Internet Security. | 55 L"cmcsyshk.dll", // CMC Internet Security. |
| 56 L"cmsetac.dll", // Unknown (suspected malware). | 56 L"cmsetac.dll", // Unknown (suspected malware). |
| 57 L"cooliris.dll", // CoolIris. | 57 L"cooliris.dll", // CoolIris. |
| 58 L"dockshellhook.dll", // Stardock Objectdock. | 58 L"dockshellhook.dll", // Stardock Objectdock. |
| 59 L"easyhook32.dll", // GDIPP and others. | 59 L"easyhook32.dll", // GDIPP and others. |
| 60 L"esspd.dll", // Samsung Smart Security ESCORT. |
| 60 L"googledesktopnetwork3.dll", // Google Desktop Search v5. | 61 L"googledesktopnetwork3.dll", // Google Desktop Search v5. |
| 61 L"fwhook.dll", // PC Tools Firewall Plus. | 62 L"fwhook.dll", // PC Tools Firewall Plus. |
| 62 L"hookprocesscreation.dll", // Blumentals Program protector. | 63 L"hookprocesscreation.dll", // Blumentals Program protector. |
| 63 L"hookterminateapis.dll", // Blumentals and Cyberprinter. | 64 L"hookterminateapis.dll", // Blumentals and Cyberprinter. |
| 64 L"hookprintapis.dll", // Cyberprinter. | 65 L"hookprintapis.dll", // Cyberprinter. |
| 65 L"imon.dll", // NOD32 Antivirus. | 66 L"imon.dll", // NOD32 Antivirus. |
| 67 L"icatcdll.dll", // Samsung Smart Security ESCORT. |
| 68 L"icdcnl.dll", // Samsung Smart Security ESCORT. |
| 66 L"ioloHL.dll", // Iolo (System Mechanic). | 69 L"ioloHL.dll", // Iolo (System Mechanic). |
| 67 L"kloehk.dll", // Kaspersky Internet Security. | 70 L"kloehk.dll", // Kaspersky Internet Security. |
| 68 L"lawenforcer.dll", // Spyware-Browser AntiSpyware (Spybro). | 71 L"lawenforcer.dll", // Spyware-Browser AntiSpyware (Spybro). |
| 69 L"libdivx.dll", // DivX. | 72 L"libdivx.dll", // DivX. |
| 70 L"lvprcinj01.dll", // Logitech QuickCam. | 73 L"lvprcinj01.dll", // Logitech QuickCam. |
| 71 L"madchook.dll", // Madshi (generic hooking library). | 74 L"madchook.dll", // Madshi (generic hooking library). |
| 72 L"mdnsnsp.dll", // Bonjour. | 75 L"mdnsnsp.dll", // Bonjour. |
| 73 L"moonsysh.dll", // Moon Secure Antivirus. | 76 L"moonsysh.dll", // Moon Secure Antivirus. |
| 74 L"mpk.dll", // KGB Spy. | 77 L"mpk.dll", // KGB Spy. |
| 75 L"npdivx32.dll", // DivX. | 78 L"npdivx32.dll", // DivX. |
| (...skipping 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 } | 763 } |
| 761 | 764 |
| 762 return false; | 765 return false; |
| 763 } | 766 } |
| 764 | 767 |
| 765 bool BrokerAddTargetPeer(HANDLE peer_process) { | 768 bool BrokerAddTargetPeer(HANDLE peer_process) { |
| 766 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK; | 769 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK; |
| 767 } | 770 } |
| 768 | 771 |
| 769 } // namespace content | 772 } // namespace content |
| OLD | NEW |