| 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 6516136cea9d8e9bbd02fec2e8028ff0d3640f17..343691db755823efeb45f89594acff5a9da78f5b 100644
|
| --- a/net/test/spawned_test_server/local_test_server.cc
|
| +++ b/net/test/spawned_test_server/local_test_server.cc
|
| @@ -84,8 +84,8 @@ bool LocalTestServer::GetTestServerPath(base::FilePath* testserver_path) const {
|
| return false;
|
| }
|
| testserver_dir = testserver_dir.Append(FILE_PATH_LITERAL("net"))
|
| - .Append(FILE_PATH_LITERAL("tools"))
|
| - .Append(FILE_PATH_LITERAL("testserver"));
|
| + .Append(FILE_PATH_LITERAL("tools"))
|
| + .Append(FILE_PATH_LITERAL("testserver"));
|
| *testserver_path = testserver_dir.Append(FILE_PATH_LITERAL("testserver.py"));
|
| return true;
|
| }
|
| @@ -161,9 +161,9 @@ bool LocalTestServer::Init(const base::FilePath& document_root) {
|
| return false;
|
| SetResourcePath(src_dir.Append(document_root),
|
| src_dir.AppendASCII("net")
|
| - .AppendASCII("data")
|
| - .AppendASCII("ssl")
|
| - .AppendASCII("certificates"));
|
| + .AppendASCII("data")
|
| + .AppendASCII("ssl")
|
| + .AppendASCII("certificates"));
|
| return true;
|
| }
|
|
|
| @@ -216,12 +216,13 @@ bool LocalTestServer::AddCommandLineArguments(
|
| if (!value.GetAsList(&list) || !list || list->empty())
|
| return false;
|
| for (base::ListValue::const_iterator list_it = list->begin();
|
| - list_it != list->end(); ++list_it) {
|
| + list_it != list->end();
|
| + ++list_it) {
|
| if (!AppendArgumentFromJSONValue(key, *(*list_it), command_line))
|
| return false;
|
| }
|
| } else if (!AppendArgumentFromJSONValue(key, value, command_line)) {
|
| - return false;
|
| + return false;
|
| }
|
| }
|
|
|
|
|