| 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 #ifndef NET_TEST_SPAWNED_TEST_SERVER_REMOTE_TEST_SERVER_H_ | 5 #ifndef NET_TEST_SPAWNED_TEST_SERVER_REMOTE_TEST_SERVER_H_ |
| 6 #define NET_TEST_SPAWNED_TEST_SERVER_REMOTE_TEST_SERVER_H_ | 6 #define NET_TEST_SPAWNED_TEST_SERVER_REMOTE_TEST_SERVER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/macros.h" |
| 10 #include "net/test/spawned_test_server/base_test_server.h" | 11 #include "net/test/spawned_test_server/base_test_server.h" |
| 11 | 12 |
| 12 namespace net { | 13 namespace net { |
| 13 | 14 |
| 14 class SpawnerCommunicator; | 15 class SpawnerCommunicator; |
| 15 | 16 |
| 16 // The RemoteTestServer runs an external Python-based test server in another | 17 // The RemoteTestServer runs an external Python-based test server in another |
| 17 // machine that is different from the machine in which RemoteTestServer runs. | 18 // machine that is different from the machine in which RemoteTestServer runs. |
| 18 class RemoteTestServer : public BaseTestServer { | 19 class RemoteTestServer : public BaseTestServer { |
| 19 public: | 20 public: |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 // the host machine. | 63 // the host machine. |
| 63 scoped_ptr<SpawnerCommunicator> spawner_communicator_; | 64 scoped_ptr<SpawnerCommunicator> spawner_communicator_; |
| 64 | 65 |
| 65 DISALLOW_COPY_AND_ASSIGN(RemoteTestServer); | 66 DISALLOW_COPY_AND_ASSIGN(RemoteTestServer); |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 } // namespace net | 69 } // namespace net |
| 69 | 70 |
| 70 #endif // NET_TEST_SPAWNED_TEST_SERVER_REMOTE_TEST_SERVER_H_ | 71 #endif // NET_TEST_SPAWNED_TEST_SERVER_REMOTE_TEST_SERVER_H_ |
| 71 | 72 |
| OLD | NEW |