| 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_policy.h" | 5 #include "content/common/sandbox_policy.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/debug/debugger.h" | 10 #include "base/debug/debugger.h" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 L"radhslib.dll", // Radiant Naomi Internet Filter. | 66 L"radhslib.dll", // Radiant Naomi Internet Filter. |
| 67 L"radprlib.dll", // Radiant Naomi Internet Filter. | 67 L"radprlib.dll", // Radiant Naomi Internet Filter. |
| 68 L"rapportnikko.dll", // Trustware Rapport. | 68 L"rapportnikko.dll", // Trustware Rapport. |
| 69 L"rlhook.dll", // Trustware Bufferzone. | 69 L"rlhook.dll", // Trustware Bufferzone. |
| 70 L"rooksdol.dll", // Trustware Rapport. | 70 L"rooksdol.dll", // Trustware Rapport. |
| 71 L"rpchromebrowserrecordhelper.dll", // RealPlayer. | 71 L"rpchromebrowserrecordhelper.dll", // RealPlayer. |
| 72 L"r3hook.dll", // Kaspersky Internet Security. | 72 L"r3hook.dll", // Kaspersky Internet Security. |
| 73 L"sahook.dll", // McAfee Site Advisor. | 73 L"sahook.dll", // McAfee Site Advisor. |
| 74 L"sbrige.dll", // Unknown. | 74 L"sbrige.dll", // Unknown. |
| 75 L"sc2hook.dll", // Supercopier 2. | 75 L"sc2hook.dll", // Supercopier 2. |
| 76 L"sdhook32.dll", // Spybot - Search & Destroy Live Protection. |
| 76 L"sguard.dll", // Iolo (System Guard). | 77 L"sguard.dll", // Iolo (System Guard). |
| 77 L"smum32.dll", // Spyware Doctor version 6. | 78 L"smum32.dll", // Spyware Doctor version 6. |
| 78 L"smumhook.dll", // Spyware Doctor version 5. | 79 L"smumhook.dll", // Spyware Doctor version 5. |
| 79 L"ssldivx.dll", // DivX. | 80 L"ssldivx.dll", // DivX. |
| 80 L"syncor11.dll", // SynthCore Midi interface. | 81 L"syncor11.dll", // SynthCore Midi interface. |
| 81 L"systools.dll", // Panda Antivirus. | 82 L"systools.dll", // Panda Antivirus. |
| 82 L"tfwah.dll", // Threatfire (PC tools). | 83 L"tfwah.dll", // Threatfire (PC tools). |
| 83 L"wblind.dll", // Stardock Object desktop. | 84 L"wblind.dll", // Stardock Object desktop. |
| 84 L"wbhelp.dll", // Stardock Object desktop. | 85 L"wbhelp.dll", // Stardock Object desktop. |
| 85 L"winstylerthemehelper.dll" // Tuneup utilities 2006. | 86 L"winstylerthemehelper.dll" // Tuneup utilities 2006. |
| (...skipping 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 | 595 |
| 595 // Help the process a little. It can't start the debugger by itself if | 596 // Help the process a little. It can't start the debugger by itself if |
| 596 // the process is in a sandbox. | 597 // the process is in a sandbox. |
| 597 if (child_needs_help) | 598 if (child_needs_help) |
| 598 base::debug::SpawnDebuggerOnProcess(target.dwProcessId); | 599 base::debug::SpawnDebuggerOnProcess(target.dwProcessId); |
| 599 | 600 |
| 600 return process; | 601 return process; |
| 601 } | 602 } |
| 602 | 603 |
| 603 } // namespace sandbox | 604 } // namespace sandbox |
| OLD | NEW |