| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/browser/utility_process_host.h" | 5 #include "chrome/browser/utility_process_host.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
| 9 #include "base/message_loop.h" |
| 9 #include "base/path_service.h" | 10 #include "base/path_service.h" |
| 10 #include "base/process_util.h" | 11 #include "base/process_util.h" |
| 11 #include "base/task.h" | 12 #include "base/task.h" |
| 12 #include "chrome/common/chrome_switches.h" | 13 #include "chrome/common/chrome_switches.h" |
| 13 #include "chrome/common/render_messages.h" | 14 #include "chrome/common/render_messages.h" |
| 14 | 15 |
| 15 #if defined(OS_WIN) | 16 #if defined(OS_WIN) |
| 16 #include "chrome/browser/sandbox_policy.h" | 17 #include "chrome/browser/sandbox_policy.h" |
| 17 #elif defined(OS_POSIX) | 18 #elif defined(OS_POSIX) |
| 18 #include "base/global_descriptors_posix.h" | 19 #include "base/global_descriptors_posix.h" |
| (...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 IPC_MESSAGE_HANDLER(UtilityHostMsg_UnpackExtension_Succeeded, | 135 IPC_MESSAGE_HANDLER(UtilityHostMsg_UnpackExtension_Succeeded, |
| 135 Client::OnUnpackExtensionSucceeded) | 136 Client::OnUnpackExtensionSucceeded) |
| 136 IPC_MESSAGE_HANDLER(UtilityHostMsg_UnpackExtension_Failed, | 137 IPC_MESSAGE_HANDLER(UtilityHostMsg_UnpackExtension_Failed, |
| 137 Client::OnUnpackExtensionFailed) | 138 Client::OnUnpackExtensionFailed) |
| 138 IPC_MESSAGE_HANDLER(UtilityHostMsg_UnpackWebResource_Succeeded, | 139 IPC_MESSAGE_HANDLER(UtilityHostMsg_UnpackWebResource_Succeeded, |
| 139 Client::OnUnpackWebResourceSucceeded) | 140 Client::OnUnpackWebResourceSucceeded) |
| 140 IPC_MESSAGE_HANDLER(UtilityHostMsg_UnpackWebResource_Failed, | 141 IPC_MESSAGE_HANDLER(UtilityHostMsg_UnpackWebResource_Failed, |
| 141 Client::OnUnpackWebResourceFailed) | 142 Client::OnUnpackWebResourceFailed) |
| 142 IPC_END_MESSAGE_MAP_EX() | 143 IPC_END_MESSAGE_MAP_EX() |
| 143 } | 144 } |
| OLD | NEW |