diff options
author | erg <erg@chromium.org> | 2015-07-06 15:15:21 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-07-06 22:15:55 +0000 |
commit | bbb9e2f6486cccadde4dc2fa077af8f694105eaa (patch) | |
tree | 713737bbad8f83636cf2becfecf8c60057a95a88 /mandoline | |
parent | b7adc5b57caeea0033b2757d5babc03df73f9bb9 (diff) | |
download | chromium_src-bbb9e2f6486cccadde4dc2fa077af8f694105eaa.zip chromium_src-bbb9e2f6486cccadde4dc2fa077af8f694105eaa.tar.gz chromium_src-bbb9e2f6486cccadde4dc2fa077af8f694105eaa.tar.bz2 |
mandoline filesystem: Save cookie data to the mojo:filesystem.
This makes the network service use the sql vfs to proxy writing the
cookies to the filesystem service. This means mojo:network_service does
not directly write its data to the OS filesystem, which will allow us to
sandbox it.
BUG=493311
Review URL: https://codereview.chromium.org/1179413010
Cr-Commit-Position: refs/heads/master@{#337491}
Diffstat (limited to 'mandoline')
-rw-r--r-- | mandoline/services/core_services/core_services_application_delegate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mandoline/services/core_services/core_services_application_delegate.cc b/mandoline/services/core_services/core_services_application_delegate.cc index fb7194c..e343060 100644 --- a/mandoline/services/core_services/core_services_application_delegate.cc +++ b/mandoline/services/core_services/core_services_application_delegate.cc @@ -125,7 +125,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://network_service/") delegate.reset(new NetworkServiceDelegate); |