| 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 COMPONENTS_SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ |
| 6 #define SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ | 6 #define COMPONENTS_SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "net/test/spawned_test_server/local_test_server.h" | 12 #include "net/test/spawned_test_server/local_test_server.h" |
| 13 | 13 |
| 14 namespace syncer { | 14 namespace syncer { |
| 15 | 15 |
| 16 // 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 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 39 | 39 |
| 40 private: | 40 private: |
| 41 // Port on which the Sync XMPP server listens. | 41 // Port on which the Sync XMPP server listens. |
| 42 uint16_t xmpp_port_; | 42 uint16_t xmpp_port_; |
| 43 | 43 |
| 44 DISALLOW_COPY_AND_ASSIGN(LocalSyncTestServer); | 44 DISALLOW_COPY_AND_ASSIGN(LocalSyncTestServer); |
| 45 }; | 45 }; |
| 46 | 46 |
| 47 } // namespace syncer | 47 } // namespace syncer |
| 48 | 48 |
| 49 #endif // SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ | 49 #endif // COMPONENTS_SYNC_TEST_LOCAL_SYNC_TEST_SERVER_H_ |
| OLD | NEW |