OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_SYNCABLE_SYNCABLE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ |
6 #define CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ | 6 #define CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ |
7 | 7 |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include <bitset> | 9 #include <bitset> |
10 #include <iosfwd> | 10 #include <iosfwd> |
11 #include <map> | 11 #include <map> |
12 #include <set> | 12 #include <set> |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/atomicops.h" | 16 #include "base/atomicops.h" |
17 #include "base/basictypes.h" | 17 #include "base/basictypes.h" |
18 #include "base/time.h" | 18 #include "base/time.h" |
19 #include "chrome/browser/sync/syncable/blob.h" | 19 #include "chrome/browser/sync/syncable/blob.h" |
20 #include "chrome/browser/sync/syncable/dir_open_result.h" | 20 #include "chrome/browser/sync/syncable/dir_open_result.h" |
21 #include "chrome/browser/sync/syncable/directory_event.h" | 21 #include "chrome/browser/sync/syncable/directory_event.h" |
22 #include "chrome/browser/sync/syncable/path_name_cmp.h" | 22 #include "chrome/browser/sync/syncable/path_name_cmp.h" |
23 #include "chrome/browser/sync/syncable/syncable_id.h" | 23 #include "chrome/browser/sync/syncable/syncable_id.h" |
24 #include "chrome/browser/sync/util/compat-file.h" | 24 #include "chrome/browser/sync/util/compat_file.h" |
25 #include "chrome/browser/sync/util/compat-pthread.h" | 25 #include "chrome/browser/sync/util/compat_pthread.h" |
26 #include "chrome/browser/sync/util/dbgq.h" | 26 #include "chrome/browser/sync/util/dbgq.h" |
27 #include "chrome/browser/sync/util/event_sys.h" | 27 #include "chrome/browser/sync/util/event_sys.h" |
28 #include "chrome/browser/sync/util/path_helpers.h" | 28 #include "chrome/browser/sync/util/path_helpers.h" |
29 #include "chrome/browser/sync/util/pthread_helpers.h" | 29 #include "chrome/browser/sync/util/pthread_helpers.h" |
30 #include "chrome/browser/sync/util/row_iterator.h" | 30 #include "chrome/browser/sync/util/row_iterator.h" |
31 #include "chrome/browser/sync/util/sync_types.h" | 31 #include "chrome/browser/sync/util/sync_types.h" |
32 | 32 |
33 struct PurgeInfo; | 33 struct PurgeInfo; |
34 | 34 |
35 namespace sync_api { | 35 namespace sync_api { |
(...skipping 1371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1407 } // namespace syncable | 1407 } // namespace syncable |
1408 | 1408 |
1409 std::ostream& operator <<(std::ostream&, const syncable::Blob&); | 1409 std::ostream& operator <<(std::ostream&, const syncable::Blob&); |
1410 | 1410 |
1411 browser_sync::FastDump& operator << | 1411 browser_sync::FastDump& operator << |
1412 (browser_sync::FastDump&, const syncable::Blob&); | 1412 (browser_sync::FastDump&, const syncable::Blob&); |
1413 | 1413 |
1414 std::ostream& operator <<(std::ostream&, const syncable::ThreadNode&); | 1414 std::ostream& operator <<(std::ostream&, const syncable::ThreadNode&); |
1415 | 1415 |
1416 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ | 1416 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ |
OLD | NEW |