diff options
Diffstat (limited to 'mojo/runner/context.cc')
-rw-r--r-- | mojo/runner/context.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mojo/runner/context.cc b/mojo/runner/context.cc index 6eed031..e23c2b7 100644 --- a/mojo/runner/context.cc +++ b/mojo/runner/context.cc @@ -131,7 +131,7 @@ void InitContentHandlers(shell::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; |