OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ | 5 #ifndef SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ |
6 #define SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ | 6 #define SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ |
7 | 7 |
8 #include <iosfwd> | 8 #include <iosfwd> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/atomicops.h" | 11 #include "base/atomicops.h" |
12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
14 #include "base/string_util.h" | 14 #include "base/strings/string_util.h" |
15 #include "base/synchronization/lock.h" | 15 #include "base/synchronization/lock.h" |
16 #include "base/threading/non_thread_safe.h" | 16 #include "base/threading/non_thread_safe.h" |
17 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
18 #include "sync/base/sync_export.h" | 18 #include "sync/base/sync_export.h" |
19 #include "sync/syncable/syncable_id.h" | 19 #include "sync/syncable/syncable_id.h" |
20 | 20 |
21 namespace sync_pb { | 21 namespace sync_pb { |
22 class ClientToServerMessage; | 22 class ClientToServerMessage; |
23 } | 23 } |
24 | 24 |
(...skipping 317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
342 void NotifyStatusChanged(); | 342 void NotifyStatusChanged(); |
343 | 343 |
344 DISALLOW_COPY_AND_ASSIGN(ServerConnectionManager); | 344 DISALLOW_COPY_AND_ASSIGN(ServerConnectionManager); |
345 }; | 345 }; |
346 | 346 |
347 std::ostream& operator<<(std::ostream& s, const struct HttpResponse& hr); | 347 std::ostream& operator<<(std::ostream& s, const struct HttpResponse& hr); |
348 | 348 |
349 } // namespace syncer | 349 } // namespace syncer |
350 | 350 |
351 #endif // SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ | 351 #endif // SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ |
OLD | NEW |