Index: sync/internal_api/public/base/invalidation_util.h |
diff --git a/sync/internal_api/public/base/invalidation_util.h b/sync/internal_api/public/base/invalidation_util.h |
deleted file mode 100644 |
index 2de2d20e59abc73654ca4e3707e80da672ea57d0..0000000000000000000000000000000000000000 |
--- a/sync/internal_api/public/base/invalidation_util.h |
+++ /dev/null |
@@ -1,59 +0,0 @@ |
-// Copyright 2014 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
-// |
-// 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_ |
- |
-#include <map> |
-#include <set> |
-#include <string> |
- |
-#include "base/memory/scoped_ptr.h" |
-#include "sync/base/sync_export.h" |
- |
-namespace base { |
-class DictionaryValue; |
-} // namespace |
- |
-namespace invalidation { |
- |
-class Invalidation; |
-class ObjectId; |
- |
-} // namespace invalidation |
- |
-namespace syncer { |
- |
-class Invalidation; |
- |
-struct SYNC_EXPORT ObjectIdLessThan { |
- bool operator()(const invalidation::ObjectId& lhs, |
- const invalidation::ObjectId& rhs) const; |
-}; |
- |
-struct SYNC_EXPORT InvalidationVersionLessThan { |
- bool operator()(const syncer::Invalidation& a, |
- const syncer::Invalidation& b) const; |
-}; |
- |
-typedef std::set<invalidation::ObjectId, ObjectIdLessThan> ObjectIdSet; |
- |
-typedef std::map<invalidation::ObjectId, int, ObjectIdLessThan> |
- ObjectIdCountMap; |
- |
-// Caller owns the returned DictionaryValue. |
-scoped_ptr<base::DictionaryValue> ObjectIdToValue( |
- const invalidation::ObjectId& object_id); |
- |
-bool ObjectIdFromValue(const base::DictionaryValue& value, |
- invalidation::ObjectId* out); |
- |
-SYNC_EXPORT_PRIVATE std::string ObjectIdToString( |
- const invalidation::ObjectId& object_id); |
- |
-} // namespace syncer |
- |
-#endif // SYNC_INTERNAL_API_PUBLIC_BASE_INVALIDATION_UTIL_H_ |