Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(297)

Unified Diff: mandoline/services/core_services/core_services_application_delegate.cc

Issue 1231493002: mandoline filesystem: Save cookie data to the mojo:filesystem. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to ToT for jam's core services patch. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 3aae2fb35553bd5047bd9d64d7d37eda8d6ff3bd..41f5e9dea6703a1a44aca8536d1aacd9e227446d 100644
--- a/mandoline/services/core_services/core_services_application_delegate.cc
+++ b/mandoline/services/core_services/core_services_application_delegate.cc
@@ -128,7 +128,7 @@ void CoreServicesApplicationDelegate::StartApplication(
delegate.reset(new mandoline::BrowserManager);
else if (url == "mojo://clipboard/")
delegate.reset(new clipboard::ClipboardApplicationDelegate);
- else if (url == "mojo://filesystem_service/")
+ else if (url == "mojo://filesystem/")
delegate.reset(new filesystem::FileSystemApp);
else if (url == "mojo://surfaces_service/")
delegate.reset(new surfaces::SurfacesServiceApplication);
@@ -140,7 +140,7 @@ void CoreServicesApplicationDelegate::StartApplication(
#endif
#if !defined(OS_ANDROID)
else if (url == "mojo://network_service/")
- delegate.reset(new NetworkServiceDelegate);
+ delegate.reset(new mojo::NetworkServiceDelegate);
else if (url == "mojo://resource_provider/")
delegate.reset(new resource_provider::ResourceProviderApp);
else if (url == "mojo://view_manager/")

Powered by Google App Engine
This is Rietveld 408576698