| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "net/test/spawned_test_server/local_test_server.h" | 5 #include "net/test/spawned_test_server/local_test_server.h" |
| 6 | 6 |
| 7 #include <windows.h> | 7 #include <windows.h> |
| 8 | 8 |
| 9 #include "base/base_paths.h" | 9 #include "base/base_paths.h" |
| 10 #include "base/bind.h" | 10 #include "base/bind.h" |
| 11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
| 12 #include "base/environment.h" | 12 #include "base/environment.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/message_loop/message_loop.h" | 14 #include "base/message_loop/message_loop.h" |
| 15 #include "base/path_service.h" | |
| 16 #include "base/process/launch.h" | 15 #include "base/process/launch.h" |
| 17 #include "base/strings/string_number_conversions.h" | 16 #include "base/strings/string_number_conversions.h" |
| 18 #include "base/strings/string_util.h" | 17 #include "base/strings/string_util.h" |
| 19 #include "base/strings/utf_string_conversions.h" | 18 #include "base/strings/utf_string_conversions.h" |
| 20 #include "base/test/test_timeouts.h" | 19 #include "base/test/test_timeouts.h" |
| 21 #include "base/threading/thread.h" | 20 #include "base/threading/thread.h" |
| 22 #include "base/win/scoped_handle.h" | 21 #include "base/win/scoped_handle.h" |
| 23 #include "net/test/python_utils.h" | 22 #include "net/test/python_utils.h" |
| 24 | 23 |
| 25 namespace { | 24 namespace { |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 if (!ParseServerData(server_data)) { | 205 if (!ParseServerData(server_data)) { |
| 207 LOG(ERROR) << "Could not parse server_data: " << server_data; | 206 LOG(ERROR) << "Could not parse server_data: " << server_data; |
| 208 return false; | 207 return false; |
| 209 } | 208 } |
| 210 | 209 |
| 211 return true; | 210 return true; |
| 212 } | 211 } |
| 213 | 212 |
| 214 } // namespace net | 213 } // namespace net |
| 215 | 214 |
| OLD | NEW |