| 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_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 <limits> | 11 #include <limits> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 22 #include "base/time.h" | 22 #include "base/time.h" |
| 23 #include "chrome/browser/sync/protocol/sync.pb.h" | 23 #include "chrome/browser/sync/protocol/sync.pb.h" |
| 24 #include "chrome/browser/sync/syncable/blob.h" | 24 #include "chrome/browser/sync/syncable/blob.h" |
| 25 #include "chrome/browser/sync/syncable/dir_open_result.h" | 25 #include "chrome/browser/sync/syncable/dir_open_result.h" |
| 26 #include "chrome/browser/sync/syncable/directory_event.h" | 26 #include "chrome/browser/sync/syncable/directory_event.h" |
| 27 #include "chrome/browser/sync/syncable/path_name_cmp.h" | 27 #include "chrome/browser/sync/syncable/path_name_cmp.h" |
| 28 #include "chrome/browser/sync/syncable/syncable_id.h" | 28 #include "chrome/browser/sync/syncable/syncable_id.h" |
| 29 #include "chrome/browser/sync/syncable/model_type.h" | 29 #include "chrome/browser/sync/syncable/model_type.h" |
| 30 #include "chrome/browser/sync/util/channel.h" | 30 #include "chrome/browser/sync/util/channel.h" |
| 31 #include "chrome/browser/sync/util/dbgq.h" | 31 #include "chrome/browser/sync/util/dbgq.h" |
| 32 #include "chrome/browser/sync/util/row_iterator.h" | |
| 33 #include "chrome/browser/sync/util/sync_types.h" | 32 #include "chrome/browser/sync/util/sync_types.h" |
| 34 #include "chrome/common/deprecated/event_sys.h" | 33 #include "chrome/common/deprecated/event_sys.h" |
| 35 | 34 |
| 36 struct PurgeInfo; | 35 struct PurgeInfo; |
| 37 | 36 |
| 38 namespace sync_api { | 37 namespace sync_api { |
| 39 class ReadTransaction; | 38 class ReadTransaction; |
| 40 class WriteNode; | 39 class WriteNode; |
| 41 class ReadNode; | 40 class ReadNode; |
| 42 } | 41 } |
| (...skipping 1078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1121 void ZeroFields(EntryKernel* entry, int first_field); | 1120 void ZeroFields(EntryKernel* entry, int first_field); |
| 1122 | 1121 |
| 1123 } // namespace syncable | 1122 } // namespace syncable |
| 1124 | 1123 |
| 1125 std::ostream& operator <<(std::ostream&, const syncable::Blob&); | 1124 std::ostream& operator <<(std::ostream&, const syncable::Blob&); |
| 1126 | 1125 |
| 1127 browser_sync::FastDump& operator << | 1126 browser_sync::FastDump& operator << |
| 1128 (browser_sync::FastDump&, const syncable::Blob&); | 1127 (browser_sync::FastDump&, const syncable::Blob&); |
| 1129 | 1128 |
| 1130 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ | 1129 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ |
| OLD | NEW |