OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_NOTIFIER_OBJECT_ID_INVALIDATION_MAP_H_ | 5 #ifndef COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ |
6 #define SYNC_NOTIFIER_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 "sync/base/sync_export.h" | 11 #include "components/invalidation/invalidation_export.h" |
| 12 #include "components/invalidation/single_object_invalidation_set.h" |
12 #include "sync/internal_api/public/base/invalidation.h" | 13 #include "sync/internal_api/public/base/invalidation.h" |
13 #include "sync/notifier/invalidation_util.h" | 14 #include "sync/internal_api/public/base/invalidation_util.h" |
14 #include "sync/notifier/single_object_invalidation_set.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 SYNC_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); |
25 | 25 |
26 ObjectIdInvalidationMap(); | 26 ObjectIdInvalidationMap(); |
27 ~ObjectIdInvalidationMap(); | 27 ~ObjectIdInvalidationMap(); |
28 | 28 |
29 // Returns set of ObjectIds for which at least one invalidation is present. | 29 // Returns set of ObjectIds for which at least one invalidation is present. |
30 ObjectIdSet GetObjectIds() const; | 30 ObjectIdSet GetObjectIds() const; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 SingleObjectInvalidationSet, | 66 SingleObjectInvalidationSet, |
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 // SYNC_NOTIFIER_OBJECT_ID_INVALIDATION_MAP_H_ | 76 #endif // COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ |
OLD | NEW |