diff --git a/atom/app/manifests.cc b/atom/app/manifests.cc index 9b5e60862107..17d1374f80d7 100644 --- a/atom/app/manifests.cc +++ b/atom/app/manifests.cc @@ -6,15 +6,15 @@ #include "base/no_destructor.h" #include "printing/buildflags/buildflags.h" -#include "services/proxy_resolver/proxy_resolver_manifest.h" +#include "services/proxy_resolver/public/cpp/manifest.h" #include "services/service_manager/public/cpp/manifest_builder.h" #if BUILDFLAG(ENABLE_PRINTING) -#include "components/services/pdf_compositor/pdf_compositor_manifest.h" +#include "components/services/pdf_compositor/public/cpp/manifest.h" #endif #if BUILDFLAG(ENABLE_PRINT_PREVIEW) -#include "chrome/services/printing/manifest.h" +#include "chrome/services/printing/public/cpp/manifest.h" #endif const service_manager::Manifest& GetElectronContentBrowserOverlayManifest() { @@ -34,10 +34,10 @@ GetElectronPackagedServicesOverlayManifest() { static base::NoDestructor> manifests{{ proxy_resolver::GetManifest(), #if BUILDFLAG(ENABLE_PRINTING) - pdf_compositor::GetManifest(), + printing::GetPdfCompositorManifest(), #endif #if BUILDFLAG(ENABLE_PRINT_PREVIEW) - chrome_printing::GetManifest(), + GetChromePrintingManifest(), #endif }}; return *manifests; diff --git a/manifests/BUILD.gn b/manifests/BUILD.gn index 7c81cefd3b19..e4f5b99d1dcc 100644 --- a/manifests/BUILD.gn +++ b/manifests/BUILD.gn @@ -10,14 +10,14 @@ source_set("manifests") { deps = [ "//printing/buildflags", - "//services/proxy_resolver:proxy_resolver_manifest", + "//services/proxy_resolver/public/cpp:manifest", ] if (enable_basic_printing) { - deps += [ "//components/services/pdf_compositor:pdf_compositor_manifest" ] + deps += [ "//components/services/pdf_compositor/public/cpp:manifest" ] } if (enable_print_preview) { - deps += [ "//chrome/services/printing:manifest" ] + deps += [ "//chrome/services/printing/public/cpp:manifest" ] } }