| 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 <stddef.h> | 7 #include <stddef.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 L"btkeyind.dll", // Widcomm Bluetooth. | 70 L"btkeyind.dll", // Widcomm Bluetooth. |
| 71 L"cmcsyshk.dll", // CMC Internet Security. | 71 L"cmcsyshk.dll", // CMC Internet Security. |
| 72 L"cmsetac.dll", // Unknown (suspected malware). | 72 L"cmsetac.dll", // Unknown (suspected malware). |
| 73 L"cooliris.dll", // CoolIris. | 73 L"cooliris.dll", // CoolIris. |
| 74 L"cplushook.dll", // Unknown (suspected malware). | 74 L"cplushook.dll", // Unknown (suspected malware). |
| 75 L"dockshellhook.dll", // Stardock Objectdock. | 75 L"dockshellhook.dll", // Stardock Objectdock. |
| 76 L"easyhook32.dll", // GDIPP and others. | 76 L"easyhook32.dll", // GDIPP and others. |
| 77 L"esspd.dll", // Samsung Smart Security ESCORT. | 77 L"esspd.dll", // Samsung Smart Security ESCORT. |
| 78 L"googledesktopnetwork3.dll", // Google Desktop Search v5. | 78 L"googledesktopnetwork3.dll", // Google Desktop Search v5. |
| 79 L"fwhook.dll", // PC Tools Firewall Plus. | 79 L"fwhook.dll", // PC Tools Firewall Plus. |
| 80 L"guard64.dll", // Comodo Internet Security x64. |
| 80 L"hookprocesscreation.dll", // Blumentals Program protector. | 81 L"hookprocesscreation.dll", // Blumentals Program protector. |
| 81 L"hookterminateapis.dll", // Blumentals and Cyberprinter. | 82 L"hookterminateapis.dll", // Blumentals and Cyberprinter. |
| 82 L"hookprintapis.dll", // Cyberprinter. | 83 L"hookprintapis.dll", // Cyberprinter. |
| 83 L"imon.dll", // NOD32 Antivirus. | 84 L"imon.dll", // NOD32 Antivirus. |
| 84 L"icatcdll.dll", // Samsung Smart Security ESCORT. | 85 L"icatcdll.dll", // Samsung Smart Security ESCORT. |
| 85 L"icdcnl.dll", // Samsung Smart Security ESCORT. | 86 L"icdcnl.dll", // Samsung Smart Security ESCORT. |
| 86 L"ioloHL.dll", // Iolo (System Mechanic). | 87 L"ioloHL.dll", // Iolo (System Mechanic). |
| 87 L"kloehk.dll", // Kaspersky Internet Security. | 88 L"kloehk.dll", // Kaspersky Internet Security. |
| 88 L"lawenforcer.dll", // Spyware-Browser AntiSpyware (Spybro). | 89 L"lawenforcer.dll", // Spyware-Browser AntiSpyware (Spybro). |
| 89 L"libdivx.dll", // DivX. | 90 L"libdivx.dll", // DivX. |
| (...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 | 813 |
| 813 CHECK(ResumeThread(target.thread_handle()) != static_cast<DWORD>(-1)); | 814 CHECK(ResumeThread(target.thread_handle()) != static_cast<DWORD>(-1)); |
| 814 return base::Process(target.TakeProcessHandle()); | 815 return base::Process(target.TakeProcessHandle()); |
| 815 } | 816 } |
| 816 | 817 |
| 817 bool BrokerAddTargetPeer(HANDLE peer_process) { | 818 bool BrokerAddTargetPeer(HANDLE peer_process) { |
| 818 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK; | 819 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK; |
| 819 } | 820 } |
| 820 | 821 |
| 821 } // namespace content | 822 } // namespace content |
| OLD | NEW |