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 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 #pragma once | |
8 | 7 |
9 #include <iosfwd> | 8 #include <iosfwd> |
10 #include <string> | 9 #include <string> |
11 | 10 |
12 #include "base/atomicops.h" | 11 #include "base/atomicops.h" |
13 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
14 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
15 #include "base/string_util.h" | 14 #include "base/string_util.h" |
16 #include "base/synchronization/lock.h" | 15 #include "base/synchronization/lock.h" |
17 #include "base/threading/non_thread_safe.h" | 16 #include "base/threading/non_thread_safe.h" |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 // settings. | 343 // settings. |
345 bool FillMessageWithShareDetails(sync_pb::ClientToServerMessage* csm, | 344 bool FillMessageWithShareDetails(sync_pb::ClientToServerMessage* csm, |
346 syncable::Directory* manager, | 345 syncable::Directory* manager, |
347 const std::string& share); | 346 const std::string& share); |
348 | 347 |
349 std::ostream& operator<<(std::ostream& s, const struct HttpResponse& hr); | 348 std::ostream& operator<<(std::ostream& s, const struct HttpResponse& hr); |
350 | 349 |
351 } // namespace syncer | 350 } // namespace syncer |
352 | 351 |
353 #endif // SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ | 352 #endif // SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ |
OLD | NEW |