| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ |
| 6 #define CHROME_BROWSER_SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ | 6 #define CHROME_BROWSER_SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <iosfwd> | 9 #include <iosfwd> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | |
| 12 | 11 |
| 13 #include "base/atomicops.h" | 12 #include "base/atomicops.h" |
| 14 #include "base/lock.h" | 13 #include "base/lock.h" |
| 15 #include "base/logging.h" | 14 #include "base/logging.h" |
| 16 #include "base/scoped_ptr.h" | 15 #include "base/scoped_ptr.h" |
| 17 #include "base/string_util.h" | 16 #include "base/string_util.h" |
| 18 #include "chrome/browser/sync/syncable/syncable_id.h" | 17 #include "chrome/browser/sync/syncable/syncable_id.h" |
| 19 #include "chrome/common/deprecated/event_sys.h" | 18 #include "chrome/common/deprecated/event_sys.h" |
| 20 #include "chrome/common/deprecated/event_sys-inl.h" | 19 #include "chrome/common/deprecated/event_sys-inl.h" |
| 21 #include "chrome/common/net/http_return.h" | 20 #include "chrome/common/net/http_return.h" |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 bool FillMessageWithShareDetails(sync_pb::ClientToServerMessage* csm, | 381 bool FillMessageWithShareDetails(sync_pb::ClientToServerMessage* csm, |
| 383 syncable::DirectoryManager* manager, | 382 syncable::DirectoryManager* manager, |
| 384 const std::string& share); | 383 const std::string& share); |
| 385 | 384 |
| 386 } // namespace browser_sync | 385 } // namespace browser_sync |
| 387 | 386 |
| 388 std::ostream& operator<<(std::ostream& s, | 387 std::ostream& operator<<(std::ostream& s, |
| 389 const struct browser_sync::HttpResponse& hr); | 388 const struct browser_sync::HttpResponse& hr); |
| 390 | 389 |
| 391 #endif // CHROME_BROWSER_SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ | 390 #endif // CHROME_BROWSER_SYNC_ENGINE_NET_SERVER_CONNECTION_MANAGER_H_ |
| OLD | NEW |