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

Unified Diff: shell/context.cc

Issue 1641513004: Update //base to chromium 9659b08ea5a34f889dc4166217f438095ddc10d2 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 years, 11 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
« no previous file with comments | « shell/application_manager/application_manager.cc ('k') | shell/crash/crash_upload.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: shell/context.cc
diff --git a/shell/context.cc b/shell/context.cc
index 60567301f1dab36fa8faab8521eccb24c79d1e53..4f0d693eccccf20b53e36ba529fd8b23f2383fd7 100644
--- a/shell/context.cc
+++ b/shell/context.cc
@@ -150,7 +150,7 @@ void InitContentHandlers(ApplicationManager* manager,
// (to embed a comma into a string escape it using "\,")
// Whatever takes 'parameters' and constructs a CommandLine is failing to
// un-escape the commas, we need to move this fix to that file.
- ReplaceSubstringsAfterOffset(&handlers_spec, 0, "\\,", ",");
+ base::ReplaceSubstringsAfterOffset(&handlers_spec, 0, "\\,", ",");
#endif
std::vector<std::string> parts;
@@ -296,7 +296,7 @@ bool Context::InitWithPaths(
mojo_shell_child_path_ = shell_child_path;
task_runners_.reset(
- new TaskRunners(base::MessageLoop::current()->message_loop_proxy()));
+ new TaskRunners(base::MessageLoop::current()->task_runner()));
#if !defined(OS_MACOSX)
application_manager()->SetLoaderForURL(
« no previous file with comments | « shell/application_manager/application_manager.cc ('k') | shell/crash/crash_upload.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698