OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ | 5 #ifndef COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ |
6 #define COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ | 6 #define COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
| 11 #include "components/invalidation/invalidation.h" |
11 #include "components/invalidation/invalidation_export.h" | 12 #include "components/invalidation/invalidation_export.h" |
| 13 #include "components/invalidation/invalidation_util.h" |
12 #include "components/invalidation/single_object_invalidation_set.h" | 14 #include "components/invalidation/single_object_invalidation_set.h" |
13 #include "sync/internal_api/public/base/invalidation.h" | |
14 #include "sync/internal_api/public/base/invalidation_util.h" | |
15 | 15 |
16 namespace syncer { | 16 namespace syncer { |
17 | 17 |
18 // A set of notifications with some helper methods to organize them by object ID | 18 // A set of notifications with some helper methods to organize them by object ID |
19 // and version number. | 19 // and version number. |
20 class INVALIDATION_EXPORT ObjectIdInvalidationMap { | 20 class INVALIDATION_EXPORT ObjectIdInvalidationMap { |
21 public: | 21 public: |
22 // Creates an invalidation map that includes an 'unknown version' | 22 // Creates an invalidation map that includes an 'unknown version' |
23 // invalidation for each specified ID in |ids|. | 23 // invalidation for each specified ID in |ids|. |
24 static ObjectIdInvalidationMap InvalidateAll(const ObjectIdSet& ids); | 24 static ObjectIdInvalidationMap InvalidateAll(const ObjectIdSet& ids); |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
67 ObjectIdLessThan> IdToListMap; | 67 ObjectIdLessThan> IdToListMap; |
68 | 68 |
69 ObjectIdInvalidationMap(const IdToListMap& map); | 69 ObjectIdInvalidationMap(const IdToListMap& map); |
70 | 70 |
71 IdToListMap map_; | 71 IdToListMap map_; |
72 }; | 72 }; |
73 | 73 |
74 } // namespace syncer | 74 } // namespace syncer |
75 | 75 |
76 #endif // COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ | 76 #endif // COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ |
OLD | NEW |