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

Unified Diff: components/invalidation/invalidation_util.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 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/components/invalidation/invalidation_util.h b/components/invalidation/invalidation_util.h
deleted file mode 100644
index b5b21b6a36dee7dba71935f2865212635b1fc46f..0000000000000000000000000000000000000000
--- a/components/invalidation/invalidation_util.h
+++ /dev/null
@@ -1,57 +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 COMPONENTS_INVALIDATION_INVALIDATION_UTIL_H_
-#define COMPONENTS_INVALIDATION_INVALIDATION_UTIL_H_
-
-#include <map>
-#include <set>
-#include <string>
-
-#include "base/memory/scoped_ptr.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 INVALIDATION_EXPORT ObjectIdLessThan {
- bool operator()(const invalidation::ObjectId& lhs,
- const invalidation::ObjectId& rhs) const;
-};
-
-struct INVALIDATION_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);
-
-INVALIDATION_EXPORT std::string ObjectIdToString(
- const invalidation::ObjectId& object_id);
-
-} // namespace syncer
-
-#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