| 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/file_path.h" | 18 #include "base/file_path.h" |
| 19 #include "base/lock.h" | 19 #include "base/lock.h" |
| 20 #include "base/time.h" | 20 #include "base/time.h" |
| 21 #include "chrome/browser/sync/syncable/blob.h" | 21 #include "chrome/browser/sync/syncable/blob.h" |
| 22 #include "chrome/browser/sync/syncable/dir_open_result.h" | 22 #include "chrome/browser/sync/syncable/dir_open_result.h" |
| 23 #include "chrome/browser/sync/syncable/directory_event.h" | 23 #include "chrome/browser/sync/syncable/directory_event.h" |
| 24 #include "chrome/browser/sync/syncable/path_name_cmp.h" | 24 #include "chrome/browser/sync/syncable/path_name_cmp.h" |
| 25 #include "chrome/browser/sync/syncable/syncable_id.h" | 25 #include "chrome/browser/sync/syncable/syncable_id.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" | |
| 29 #include "chrome/browser/sync/util/row_iterator.h" | 28 #include "chrome/browser/sync/util/row_iterator.h" |
| 30 #include "chrome/browser/sync/util/sync_types.h" | 29 #include "chrome/browser/sync/util/sync_types.h" |
| 31 | 30 |
| 32 struct PurgeInfo; | 31 struct PurgeInfo; |
| 33 | 32 |
| 34 namespace sync_api { | 33 namespace sync_api { |
| 35 class ReadTransaction; | 34 class ReadTransaction; |
| 36 class WriteNode; | 35 class WriteNode; |
| 37 class ReadNode; | 36 class ReadNode; |
| 38 } | 37 } |
| (...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1059 void ZeroFields(EntryKernel* entry, int first_field); | 1058 void ZeroFields(EntryKernel* entry, int first_field); |
| 1060 | 1059 |
| 1061 } // namespace syncable | 1060 } // namespace syncable |
| 1062 | 1061 |
| 1063 std::ostream& operator <<(std::ostream&, const syncable::Blob&); | 1062 std::ostream& operator <<(std::ostream&, const syncable::Blob&); |
| 1064 | 1063 |
| 1065 browser_sync::FastDump& operator << | 1064 browser_sync::FastDump& operator << |
| 1066 (browser_sync::FastDump&, const syncable::Blob&); | 1065 (browser_sync::FastDump&, const syncable::Blob&); |
| 1067 | 1066 |
| 1068 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ | 1067 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ |
| OLD | NEW |