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

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

Issue 1191393008: Introduce a layering in the invalidation component as public and impl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Explicitly forbid content to prevent future additions Created 5 years, 6 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
OLDNEW
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_PUBLIC_OBJECT_ID_INVALIDATION_MAP_H_
6 #define COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ 6 #define COMPONENTS_INVALIDATION_PUBLIC_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/public/invalidation.h"
12 #include "components/invalidation/invalidation_export.h" 12 #include "components/invalidation/public/invalidation_export.h"
13 #include "components/invalidation/invalidation_util.h" 13 #include "components/invalidation/public/invalidation_util.h"
14 #include "components/invalidation/single_object_invalidation_set.h" 14 #include "components/invalidation/public/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 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 41 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 // COMPONENTS_INVALIDATION_OBJECT_ID_INVALIDATION_MAP_H_ 76 #endif // COMPONENTS_INVALIDATION_PUBLIC_OBJECT_ID_INVALIDATION_MAP_H_
OLDNEW
« no previous file with comments | « components/invalidation/public/invalidator_state.cc ('k') | components/invalidation/public/object_id_invalidation_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698