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 SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ | 5 #ifndef SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ |
6 #define SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ | 6 #define SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include <stdint.h> |
| 9 |
9 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
10 #include "net/test/spawned_test_server/local_test_server.h" | 12 #include "net/test/spawned_test_server/local_test_server.h" |
11 | 13 |
12 namespace syncer { | 14 namespace syncer { |
13 | 15 |
14 // Runs a Python-based sync test server on the same machine on which the | 16 // Runs a Python-based sync test server on the same machine on which the |
15 // LocalSyncTestServer runs. | 17 // LocalSyncTestServer runs. |
16 class LocalSyncTestServer : public net::LocalTestServer { | 18 class LocalSyncTestServer : public net::LocalTestServer { |
17 public: | 19 public: |
18 // Initialize a sync server that listens on localhost using ephemeral ports | 20 // Initialize a sync server that listens on localhost using ephemeral ports |
19 // for sync and p2p notifications. | 21 // for sync and p2p notifications. |
20 LocalSyncTestServer(); | 22 LocalSyncTestServer(); |
21 | 23 |
22 // Initialize a sync server that listens on |port| for sync updates and | 24 // Initialize a sync server that listens on |port| for sync updates and |
23 // |xmpp_port| for p2p notifications. | 25 // |xmpp_port| for p2p notifications. |
24 LocalSyncTestServer(uint16 port, uint16 xmpp_port); | 26 LocalSyncTestServer(uint16_t port, uint16_t xmpp_port); |
25 | 27 |
26 ~LocalSyncTestServer() override; | 28 ~LocalSyncTestServer() override; |
27 | 29 |
28 // Overriden from net::LocalTestServer. | 30 // Overriden from net::LocalTestServer. |
29 bool AddCommandLineArguments(base::CommandLine* command_line) const override; | 31 bool AddCommandLineArguments(base::CommandLine* command_line) const override; |
30 bool SetPythonPath() const override; | 32 bool SetPythonPath() const override; |
31 bool GetTestServerPath(base::FilePath* testserver_path) const override; | 33 bool GetTestServerPath(base::FilePath* testserver_path) const override; |
32 | 34 |
33 // Returns true if the path to |test_script_name| is successfully stored in | 35 // Returns true if the path to |test_script_name| is successfully stored in |
34 // |*test_script_path|. Used by the run_sync_testserver executable. | 36 // |*test_script_path|. Used by the run_sync_testserver executable. |
35 bool GetTestScriptPath(const base::FilePath::StringType& test_script_name, | 37 bool GetTestScriptPath(const base::FilePath::StringType& test_script_name, |
36 base::FilePath* test_script_path) const; | 38 base::FilePath* test_script_path) const; |
37 | 39 |
38 private: | 40 private: |
39 // Port on which the Sync XMPP server listens. | 41 // Port on which the Sync XMPP server listens. |
40 uint16 xmpp_port_; | 42 uint16_t xmpp_port_; |
41 | 43 |
42 DISALLOW_COPY_AND_ASSIGN(LocalSyncTestServer); | 44 DISALLOW_COPY_AND_ASSIGN(LocalSyncTestServer); |
43 }; | 45 }; |
44 | 46 |
45 } // namespace syncer | 47 } // namespace syncer |
46 | 48 |
47 #endif // SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ | 49 #endif // SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ |
OLD | NEW |