| OLD | NEW |
| 1 // Copyright (c) 2010 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <algorithm> | 9 #include <algorithm> |
| 10 #include <bitset> | 10 #include <bitset> |
| (...skipping 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 void MarkForSyncing(syncable::MutableEntry* e); | 1129 void MarkForSyncing(syncable::MutableEntry* e); |
| 1130 | 1130 |
| 1131 // This is not a reset. It just sets the numeric fields which are not | 1131 // This is not a reset. It just sets the numeric fields which are not |
| 1132 // initialized by the constructor to zero. | 1132 // initialized by the constructor to zero. |
| 1133 void ZeroFields(EntryKernel* entry, int first_field); | 1133 void ZeroFields(EntryKernel* entry, int first_field); |
| 1134 | 1134 |
| 1135 } // namespace syncable | 1135 } // namespace syncable |
| 1136 | 1136 |
| 1137 std::ostream& operator <<(std::ostream&, const syncable::Blob&); | 1137 std::ostream& operator <<(std::ostream&, const syncable::Blob&); |
| 1138 | 1138 |
| 1139 browser_sync::FastDump& operator << | |
| 1140 (browser_sync::FastDump&, const syncable::Blob&); | |
| 1141 | |
| 1142 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ | 1139 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ |
| OLD | NEW |