| 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 "chrome/utility/chrome_content_utility_client.h" | 5 #include "chrome/utility/chrome_content_utility_client.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 #include "extensions/features/features.h" | 27 #include "extensions/features/features.h" |
| 28 #include "mojo/public/cpp/bindings/strong_binding.h" | 28 #include "mojo/public/cpp/bindings/strong_binding.h" |
| 29 #include "printing/features/features.h" | 29 #include "printing/features/features.h" |
| 30 #include "services/service_manager/public/cpp/binder_registry.h" | 30 #include "services/service_manager/public/cpp/binder_registry.h" |
| 31 #include "third_party/zlib/google/zip.h" | 31 #include "third_party/zlib/google/zip.h" |
| 32 | 32 |
| 33 #if !defined(OS_ANDROID) | 33 #if !defined(OS_ANDROID) |
| 34 #include "chrome/common/resource_usage_reporter.mojom.h" | 34 #include "chrome/common/resource_usage_reporter.mojom.h" |
| 35 #include "chrome/utility/media_router/dial_device_description_parser_impl.h" | 35 #include "chrome/utility/media_router/dial_device_description_parser_impl.h" |
| 36 #include "chrome/utility/profile_import_handler.h" | 36 #include "chrome/utility/profile_import_handler.h" |
| 37 #include "net/proxy/mojo_proxy_resolver_factory_impl.h" | 37 #include "net/proxy/mojo_proxy_resolver_factory_impl.h" // nogncheck |
| 38 #include "net/proxy/proxy_resolver_v8.h" | 38 #include "net/proxy/proxy_resolver_v8.h" |
| 39 #endif // !defined(OS_ANDROID) | 39 #endif // !defined(OS_ANDROID) |
| 40 | 40 |
| 41 #if defined(OS_CHROMEOS) | 41 #if defined(OS_CHROMEOS) |
| 42 #include "chrome/common/zip_file_creator.mojom.h" | 42 #include "chrome/common/zip_file_creator.mojom.h" |
| 43 #endif | 43 #endif |
| 44 | 44 |
| 45 #if defined(OS_WIN) | 45 #if defined(OS_WIN) |
| 46 #include "chrome/utility/ipc_shell_handler_win.h" | 46 #include "chrome/utility/ipc_shell_handler_win.h" |
| 47 #include "chrome/utility/shell_handler_impl_win.h" | 47 #include "chrome/utility/shell_handler_impl_win.h" |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 335 services->emplace(printing::mojom::kServiceName, pdf_compositor_info); | 335 services->emplace(printing::mojom::kServiceName, pdf_compositor_info); |
| 336 #endif | 336 #endif |
| 337 } | 337 } |
| 338 | 338 |
| 339 // static | 339 // static |
| 340 void ChromeContentUtilityClient::PreSandboxStartup() { | 340 void ChromeContentUtilityClient::PreSandboxStartup() { |
| 341 #if BUILDFLAG(ENABLE_EXTENSIONS) | 341 #if BUILDFLAG(ENABLE_EXTENSIONS) |
| 342 extensions::ExtensionsHandler::PreSandboxStartup(); | 342 extensions::ExtensionsHandler::PreSandboxStartup(); |
| 343 #endif | 343 #endif |
| 344 } | 344 } |
| OLD | NEW |