| 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 2dfbaf80505e97f05b712d6141b4721ce327f462..8de1a2bdcdfe8d36093835d399a5bc89e560f2e9 100644
|
| --- a/mandoline/services/core_services/core_services_application_delegate.cc
|
| +++ b/mandoline/services/core_services/core_services_application_delegate.cc
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "base/bind.h"
|
| #include "components/clipboard/clipboard_application_delegate.h"
|
| +#include "components/resource_provider/resource_provider_app.h"
|
| #include "components/surfaces/surfaces_service_application.h"
|
| #include "components/view_manager/view_manager_app.h"
|
| #include "mandoline/ui/browser/browser.h"
|
| @@ -130,6 +131,8 @@ void CoreServicesApplicationDelegate::StartApplication(
|
| else if (url == "mojo://network_service/")
|
| delegate.reset(new NetworkServiceDelegate);
|
| #endif
|
| + else if (url == "mojo://resource_provider/")
|
| + delegate.reset(new resource_provider::ResourceProviderApp);
|
| else if (url == "mojo://surfaces_service/")
|
| delegate.reset(new surfaces::SurfacesServiceApplication);
|
| else if (url == "mojo://tracing/")
|
|
|