Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(464)

Side by Side Diff: components/invalidation/object_id_invalidation_map.h

Issue 387733004: Move sync/notifier to components/invalidation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: (GN) Comment out dependency on internal target Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « components/invalidation/non_blocking_invalidator_unittest.cc ('k') | components/invalidation/object_id_invalidation_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698