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

Unified Diff: components/invalidation/invalidation_util.h

Issue 400073003: Finish decoupling sync and invalidations (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix GN 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/invalidation/invalidation_test_util.cc ('k') | components/invalidation/invalidation_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/invalidation/invalidation_util.h
diff --git a/sync/internal_api/public/base/invalidation_util.h b/components/invalidation/invalidation_util.h
similarity index 76%
rename from sync/internal_api/public/base/invalidation_util.h
rename to components/invalidation/invalidation_util.h
index 2de2d20e59abc73654ca4e3707e80da672ea57d0..b5b21b6a36dee7dba71935f2865212635b1fc46f 100644
--- a/sync/internal_api/public/base/invalidation_util.h
+++ b/components/invalidation/invalidation_util.h
@@ -4,37 +4,35 @@
//
// Various utilities for dealing with invalidation data types.
-#ifndef SYNC_INTERNAL_API_PUBLIC_BASE_INVALIDATION_UTIL_H_
-#define SYNC_INTERNAL_API_PUBLIC_BASE_INVALIDATION_UTIL_H_
+#ifndef COMPONENTS_INVALIDATION_INVALIDATION_UTIL_H_
+#define COMPONENTS_INVALIDATION_INVALIDATION_UTIL_H_
#include <map>
#include <set>
#include <string>
#include "base/memory/scoped_ptr.h"
-#include "sync/base/sync_export.h"
+#include "components/invalidation/invalidation_export.h"
namespace base {
class DictionaryValue;
} // namespace
namespace invalidation {
-
class Invalidation;
class ObjectId;
-
} // namespace invalidation
namespace syncer {
class Invalidation;
-struct SYNC_EXPORT ObjectIdLessThan {
+struct INVALIDATION_EXPORT ObjectIdLessThan {
bool operator()(const invalidation::ObjectId& lhs,
const invalidation::ObjectId& rhs) const;
};
-struct SYNC_EXPORT InvalidationVersionLessThan {
+struct INVALIDATION_EXPORT InvalidationVersionLessThan {
bool operator()(const syncer::Invalidation& a,
const syncer::Invalidation& b) const;
};
@@ -51,9 +49,9 @@ scoped_ptr<base::DictionaryValue> ObjectIdToValue(
bool ObjectIdFromValue(const base::DictionaryValue& value,
invalidation::ObjectId* out);
-SYNC_EXPORT_PRIVATE std::string ObjectIdToString(
+INVALIDATION_EXPORT std::string ObjectIdToString(
const invalidation::ObjectId& object_id);
} // namespace syncer
-#endif // SYNC_INTERNAL_API_PUBLIC_BASE_INVALIDATION_UTIL_H_
+#endif // COMPONENTS_INVALIDATION_INVALIDATION_UTIL_H_
« no previous file with comments | « components/invalidation/invalidation_test_util.cc ('k') | components/invalidation/invalidation_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698