OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 SYNC_SYNCABLE_PARENT_CHILD_INDEX_H_ | 5 #ifndef SYNC_SYNCABLE_PARENT_CHILD_INDEX_H_ |
6 #define SYNC_SYNCABLE_PARENT_CHILD_INDEX_H_ | 6 #define SYNC_SYNCABLE_PARENT_CHILD_INDEX_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/macros.h" |
13 #include "base/memory/scoped_vector.h" | 13 #include "base/memory/scoped_vector.h" |
14 #include "sync/base/sync_export.h" | 14 #include "sync/base/sync_export.h" |
15 #include "sync/internal_api/public/base/model_type.h" | 15 #include "sync/internal_api/public/base/model_type.h" |
16 #include "sync/syncable/syncable_id.h" | 16 #include "sync/syncable/syncable_id.h" |
17 | 17 |
18 namespace syncer { | 18 namespace syncer { |
19 namespace syncable { | 19 namespace syncable { |
20 | 20 |
21 struct EntryKernel; | 21 struct EntryKernel; |
22 class ParentChildIndex; | 22 class ParentChildIndex; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 // with implicit parent. | 95 // with implicit parent. |
96 TypeRootChildSets type_root_child_sets_; | 96 TypeRootChildSets type_root_child_sets_; |
97 | 97 |
98 DISALLOW_COPY_AND_ASSIGN(ParentChildIndex); | 98 DISALLOW_COPY_AND_ASSIGN(ParentChildIndex); |
99 }; | 99 }; |
100 | 100 |
101 } // namespace syncable | 101 } // namespace syncable |
102 } // namespace syncer | 102 } // namespace syncer |
103 | 103 |
104 #endif // SYNC_SYNCABLE_PARENT_CHILD_INDEX_H_ | 104 #endif // SYNC_SYNCABLE_PARENT_CHILD_INDEX_H_ |
OLD | NEW |