Index: net/test/spawned_test_server/local_test_server.cc |
diff --git a/net/test/spawned_test_server/local_test_server.cc b/net/test/spawned_test_server/local_test_server.cc |
index 7ee12b99f69fc5032ea477c5ca8a1915547e835f..6516136cea9d8e9bbd02fec2e8028ff0d3640f17 100644 |
--- a/net/test/spawned_test_server/local_test_server.cc |
+++ b/net/test/spawned_test_server/local_test_server.cc |
@@ -22,7 +22,7 @@ namespace { |
bool AppendArgumentFromJSONValue(const std::string& key, |
const base::Value& value_node, |
- CommandLine* command_line) { |
+ base::CommandLine* command_line) { |
std::string argument_name = "--" + key; |
switch (value_node.GetType()) { |
case base::Value::TYPE_NULL: |
@@ -198,7 +198,8 @@ bool LocalTestServer::SetPythonPath() const { |
return true; |
} |
-bool LocalTestServer::AddCommandLineArguments(CommandLine* command_line) const { |
+bool LocalTestServer::AddCommandLineArguments( |
+ base::CommandLine* command_line) const { |
base::DictionaryValue arguments_dict; |
if (!GenerateArguments(&arguments_dict)) |
return false; |