| Index: mandoline/services/core_services/core_services_application_delegate.cc
|
| diff --git a/mandoline/services/core_services/core_services_application_delegate.cc b/mandoline/services/core_services/core_services_application_delegate.cc
|
| index 7805164bdc0f30eb68189c431c9b8f6d84a05101..d3ef94685acfcf9fe628be02b56a7b2d8b87b8ed 100644
|
| --- a/mandoline/services/core_services/core_services_application_delegate.cc
|
| +++ b/mandoline/services/core_services/core_services_application_delegate.cc
|
| @@ -28,6 +28,10 @@
|
| #include "mojo/services/network/network_service_delegate.h"
|
| #endif
|
|
|
| +#if defined(OS_LINUX) && !defined(OS_ANDROID)
|
| +#include "components/font_service/font_service_app.h"
|
| +#endif
|
| +
|
| namespace core_services {
|
|
|
| // A helper class for hosting a mojo::ApplicationImpl on its own thread.
|
| @@ -130,6 +134,10 @@ void CoreServicesApplicationDelegate::StartApplication(
|
| delegate.reset(new clipboard::ClipboardApplicationDelegate);
|
| } else if (url == "mojo://filesystem/") {
|
| delegate.reset(new filesystem::FileSystemApp);
|
| +#if defined(OS_LINUX) && !defined(OS_ANDROID)
|
| + } else if (url == "mojo://font_service/") {
|
| + delegate.reset(new font_service::FontServiceApp);
|
| +#endif
|
| } else if (url == "mojo://surfaces_service/") {
|
| delegate.reset(new surfaces::SurfacesServiceApplication);
|
| } else if (url == "mojo://tracing/") {
|
|
|