| Index: chrome/browser/chrome_content_browser_client.cc
|
| diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
|
| index 0738496bfc2a5ce97414bf885c594f7055105be4..ca636043102417a2db3027f8d1270760e50517f5 100644
|
| --- a/chrome/browser/chrome_content_browser_client.cc
|
| +++ b/chrome/browser/chrome_content_browser_client.cc
|
| @@ -378,6 +378,10 @@
|
| #include "chrome/browser/media/cast_remoting_connector.h"
|
| #endif
|
|
|
| +#if BUILDFLAG(ENABLE_PRINTING)
|
| +#include "components/printing/service/public/interfaces/pdf_compositor.mojom.h"
|
| +#endif
|
| +
|
| #if BUILDFLAG(ENABLE_WAYLAND_SERVER)
|
| #include "chrome/browser/chrome_browser_main_extra_parts_exo.h"
|
| #endif
|
| @@ -3288,8 +3292,12 @@ void ChromeContentBrowserClient::RegisterInProcessServices(
|
| void ChromeContentBrowserClient::RegisterOutOfProcessServices(
|
| OutOfProcessServiceMap* services) {
|
| #if defined(ENABLE_MOJO_MEDIA_IN_UTILITY_PROCESS)
|
| - services->insert(std::make_pair("media",
|
| - base::ASCIIToUTF16("Media Service")));
|
| + services->emplace("media", base::ASCIIToUTF16("Media Service"));
|
| +#endif
|
| +
|
| +#if BUILDFLAG(ENABLE_PRINTING)
|
| + services->emplace(printing::mojom::kServiceName,
|
| + base::ASCIIToUTF16("PDF Compositor Service"));
|
| #endif
|
| }
|
|
|
| @@ -3326,6 +3334,9 @@ ChromeContentBrowserClient::GetExtraServiceManifests() {
|
| {nacl::kNaClBrokerServiceName, IDR_NACL_BROKER_MANIFEST},
|
| #endif // defined(OS_WIN)
|
| #endif // !defined(DISABLE_NACL)
|
| +#if BUILDFLAG(ENABLE_PRINTING)
|
| + {printing::mojom::kServiceName, IDR_PDF_COMPOSITOR_MANIFEST},
|
| +#endif
|
| });
|
| }
|
|
|
|
|