Index: shell/context.cc |
diff --git a/shell/context.cc b/shell/context.cc |
index c7e3d02829c98c3112a8b4bd38ee9ccdd4155300..94b71f4c37f9a1f7c567ee8e1ac616ee6746f30d 100644 |
--- a/shell/context.cc |
+++ b/shell/context.cc |
@@ -103,8 +103,7 @@ void InitContentHandlers(DynamicApplicationLoader* loader, |
} |
} |
-bool ConfigureURLMappings(base::CommandLine* command_line, |
- Context* context) { |
+bool ConfigureURLMappings(base::CommandLine* command_line, Context* context) { |
URLResolver* resolver = context->url_resolver(); |
// Configure the resolution of unknown mojo: URLs. |
@@ -130,7 +129,7 @@ bool ConfigureURLMappings(base::CommandLine* command_line, |
// Command line URL mapping. |
if (command_line->HasSwitch(switches::kURLMappings)) { |
const std::string mappings = |
- command_line->GetSwitchValueASCII(switches::kURLMappings); |
+ command_line->GetSwitchValueASCII(switches::kURLMappings); |
base::StringPairs pairs; |
if (!base::SplitStringIntoKeyValuePairs(mappings, '=', ',', &pairs)) |