| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #ifndef NET_TEST_BASE_TEST_SERVER_H_ | 5 #ifndef NET_TEST_SPAWNED_TEST_SERVER_BASE_TEST_SERVER_H_ |
| 6 #define NET_TEST_BASE_TEST_SERVER_H_ | 6 #define NET_TEST_SPAWNED_TEST_SERVER_BASE_TEST_SERVER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
| 15 #include "net/base/host_port_pair.h" | 15 #include "net/base/host_port_pair.h" |
| 16 | 16 |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 248 // Enables logging of the server to the console. | 248 // Enables logging of the server to the console. |
| 249 bool log_to_console_; | 249 bool log_to_console_; |
| 250 | 250 |
| 251 scoped_ptr<ScopedPortException> allowed_port_; | 251 scoped_ptr<ScopedPortException> allowed_port_; |
| 252 | 252 |
| 253 DISALLOW_COPY_AND_ASSIGN(BaseTestServer); | 253 DISALLOW_COPY_AND_ASSIGN(BaseTestServer); |
| 254 }; | 254 }; |
| 255 | 255 |
| 256 } // namespace net | 256 } // namespace net |
| 257 | 257 |
| 258 #endif // NET_TEST_BASE_TEST_SERVER_H_ | 258 #endif // NET_TEST_SPAWNED_TEST_SERVER_BASE_TEST_SERVER_H_ |
| 259 | 259 |
| OLD | NEW |