| 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> |
| 11 #include <iosfwd> | 11 #include <iosfwd> |
| 12 #include <limits> | 12 #include <limits> |
| 13 #include <map> | |
| 14 #include <set> | 13 #include <set> |
| 15 #include <string> | 14 #include <string> |
| 16 #include <vector> | 15 #include <vector> |
| 17 | 16 |
| 18 #include "base/atomicops.h" | 17 #include "base/atomicops.h" |
| 19 #include "base/basictypes.h" | 18 #include "base/basictypes.h" |
| 20 #include "base/file_path.h" | 19 #include "base/file_path.h" |
| 21 #include "base/gtest_prod_util.h" | 20 #include "base/gtest_prod_util.h" |
| 22 #include "base/lock.h" | 21 #include "base/lock.h" |
| 23 #include "base/time.h" | 22 #include "base/time.h" |
| (...skipping 1104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1128 void ZeroFields(EntryKernel* entry, int first_field); | 1127 void ZeroFields(EntryKernel* entry, int first_field); |
| 1129 | 1128 |
| 1130 } // namespace syncable | 1129 } // namespace syncable |
| 1131 | 1130 |
| 1132 std::ostream& operator <<(std::ostream&, const syncable::Blob&); | 1131 std::ostream& operator <<(std::ostream&, const syncable::Blob&); |
| 1133 | 1132 |
| 1134 browser_sync::FastDump& operator << | 1133 browser_sync::FastDump& operator << |
| 1135 (browser_sync::FastDump&, const syncable::Blob&); | 1134 (browser_sync::FastDump&, const syncable::Blob&); |
| 1136 | 1135 |
| 1137 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ | 1136 #endif // CHROME_BROWSER_SYNC_SYNCABLE_SYNCABLE_H_ |
| OLD | NEW |