| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 L"pctavhook.dll", // PC Tools Antivirus. | 97 L"pctavhook.dll", // PC Tools Antivirus. |
| 98 L"pctgmhk.dll", // PC Tools Spyware Doctor. | 98 L"pctgmhk.dll", // PC Tools Spyware Doctor. |
| 99 L"picrmi32.dll", // PicRec. | 99 L"picrmi32.dll", // PicRec. |
| 100 L"picrmi64.dll", // PicRec. | 100 L"picrmi64.dll", // PicRec. |
| 101 L"prntrack.dll", // Pharos Systems. | 101 L"prntrack.dll", // Pharos Systems. |
| 102 L"protector.dll", // Unknown (suspected malware). | 102 L"protector.dll", // Unknown (suspected malware). |
| 103 L"radhslib.dll", // Radiant Naomi Internet Filter. | 103 L"radhslib.dll", // Radiant Naomi Internet Filter. |
| 104 L"radprlib.dll", // Radiant Naomi Internet Filter. | 104 L"radprlib.dll", // Radiant Naomi Internet Filter. |
| 105 L"rapportnikko.dll", // Trustware Rapport. | 105 L"rapportnikko.dll", // Trustware Rapport. |
| 106 L"rlhook.dll", // Trustware Bufferzone. | 106 L"rlhook.dll", // Trustware Bufferzone. |
| 107 L"rooksbas.dll", // IBM Trusteer Rapport. |
| 108 L"rooksbas_x64.dll" // IBM Trusteer Rapport. |
| 107 L"rooksdol.dll", // Trustware Rapport. | 109 L"rooksdol.dll", // Trustware Rapport. |
| 108 L"rndlpepperbrowserrecordhelper.dll", // RealPlayer. | 110 L"rndlpepperbrowserrecordhelper.dll", // RealPlayer. |
| 109 L"rpchromebrowserrecordhelper.dll", // RealPlayer. | 111 L"rpchromebrowserrecordhelper.dll", // RealPlayer. |
| 110 L"r3hook.dll", // Kaspersky Internet Security. | 112 L"r3hook.dll", // Kaspersky Internet Security. |
| 111 L"sahook.dll", // McAfee Site Advisor. | 113 L"sahook.dll", // McAfee Site Advisor. |
| 112 L"sbrige.dll", // Unknown. | 114 L"sbrige.dll", // Unknown. |
| 113 L"sc2hook.dll", // Supercopier 2. | 115 L"sc2hook.dll", // Supercopier 2. |
| 114 L"sdhook32.dll", // Spybot - Search & Destroy Live Protection. | 116 L"sdhook32.dll", // Spybot - Search & Destroy Live Protection. |
| 115 L"sguard.dll", // Iolo (System Guard). | 117 L"sguard.dll", // Iolo (System Guard). |
| 116 L"smum32.dll", // Spyware Doctor version 6. | 118 L"smum32.dll", // Spyware Doctor version 6. |
| (...skipping 750 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 } | 869 } |
| 868 | 870 |
| 869 return false; | 871 return false; |
| 870 } | 872 } |
| 871 | 873 |
| 872 bool BrokerAddTargetPeer(HANDLE peer_process) { | 874 bool BrokerAddTargetPeer(HANDLE peer_process) { |
| 873 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK; | 875 return g_broker_services->AddTargetPeer(peer_process) == sandbox::SBOX_ALL_OK; |
| 874 } | 876 } |
| 875 | 877 |
| 876 } // namespace content | 878 } // namespace content |
| OLD | NEW |