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/browser/utility_process_host_impl.h" | 5 #include "content/browser/utility_process_host_impl.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/base_switches.h" | 9 #include "base/base_switches.h" |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 #include "content/public/browser/content_browser_client.h" | 33 #include "content/public/browser/content_browser_client.h" |
34 #include "content/public/browser/utility_process_host_client.h" | 34 #include "content/public/browser/utility_process_host_client.h" |
35 #include "content/public/common/content_switches.h" | 35 #include "content/public/common/content_switches.h" |
36 #include "content/public/common/mojo_channel_switches.h" | 36 #include "content/public/common/mojo_channel_switches.h" |
37 #include "content/public/common/process_type.h" | 37 #include "content/public/common/process_type.h" |
38 #include "content/public/common/sandbox_type.h" | 38 #include "content/public/common/sandbox_type.h" |
39 #include "content/public/common/sandboxed_process_launcher_delegate.h" | 39 #include "content/public/common/sandboxed_process_launcher_delegate.h" |
40 #include "content/public/common/service_manager_connection.h" | 40 #include "content/public/common/service_manager_connection.h" |
41 #include "content/public/common/service_names.mojom.h" | 41 #include "content/public/common/service_names.mojom.h" |
42 #include "mojo/edk/embedder/embedder.h" | 42 #include "mojo/edk/embedder/embedder.h" |
43 #include "services/service_manager/public/cpp/connection.h" | |
44 #include "services/service_manager/public/cpp/interface_provider.h" | 43 #include "services/service_manager/public/cpp/interface_provider.h" |
45 #include "ui/base/ui_base_switches.h" | 44 #include "ui/base/ui_base_switches.h" |
46 | 45 |
47 #if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) | 46 #if defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) |
48 #include "content/public/browser/zygote_handle_linux.h" | 47 #include "content/public/browser/zygote_handle_linux.h" |
49 #endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) | 48 #endif // defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_MACOSX) |
50 | 49 |
51 #if defined(OS_WIN) | 50 #if defined(OS_WIN) |
52 #include "sandbox/win/src/sandbox_policy.h" | 51 #include "sandbox/win/src/sandbox_policy.h" |
53 #include "sandbox/win/src/sandbox_types.h" | 52 #include "sandbox/win/src/sandbox_types.h" |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
397 base::WeakPtr<UtilityProcessHostImpl> host, | 396 base::WeakPtr<UtilityProcessHostImpl> host, |
398 int error_code) { | 397 int error_code) { |
399 if (!host) | 398 if (!host) |
400 return; | 399 return; |
401 | 400 |
402 host->OnProcessLaunchFailed(error_code); | 401 host->OnProcessLaunchFailed(error_code); |
403 delete host.get(); | 402 delete host.get(); |
404 } | 403 } |
405 | 404 |
406 } // namespace content | 405 } // namespace content |
OLD | NEW |