diff options
author | fsamuel <fsamuel@chromium.org> | 2015-08-11 08:22:24 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-08-11 15:23:02 +0000 |
commit | 411de5c8ce7feaeb3f1d56881a0ea1db7a9aee77 (patch) | |
tree | cfb88b98404ae690e31fcc8cb56c6130a551b94b /mojo/shell | |
parent | 99a5cdb9efe533ea7e086c749062e53a0a54f829 (diff) | |
download | chromium_src-411de5c8ce7feaeb3f1d56881a0ea1db7a9aee77.zip chromium_src-411de5c8ce7feaeb3f1d56881a0ea1db7a9aee77.tar.gz chromium_src-411de5c8ce7feaeb3f1d56881a0ea1db7a9aee77.tar.bz2 |
Revert of mandoline: Sandbox mojo:browser and mojo:omnibox. (patchset #2 id:20001 of https://codereview.chromium.org/1282903002/ )
Reason for revert:
This broke --enable-multiprocess on mandoline.
Original issue's description:
> mandoline: Sandbox mojo:browser and mojo:omnibox.
>
> BUG=492524
>
> Committed: https://crrev.com/7cd4b784ffd31856b32ada4efd2265a4989fd575
> Cr-Commit-Position: refs/heads/master@{#342725}
TBR=jam@chromium.org,erg@chromium.org
NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
BUG=492524
Review URL: https://codereview.chromium.org/1274993003
Cr-Commit-Position: refs/heads/master@{#342822}
Diffstat (limited to 'mojo/shell')
-rw-r--r-- | mojo/shell/application_manager.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mojo/shell/application_manager.cc b/mojo/shell/application_manager.cc index 232e4b0..bbe68cf3 100644 --- a/mojo/shell/application_manager.cc +++ b/mojo/shell/application_manager.cc @@ -381,7 +381,7 @@ void ApplicationManager::HandleFetchCallback( // TODO(erg): Have a better way of switching the sandbox on. For now, switch // it on hard coded when we're using some of the sandboxable core services. bool start_sandboxed = false; - if (app_url == GURL("mojo://core_services/") && qualifier == "Core") + if (app_url == GURL("mojo://core_services/") && qualifier == "Sandboxed Core") start_sandboxed = true; else if (app_url == GURL("mojo://html_viewer/")) start_sandboxed = true; |