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

Unified Diff: components/sync/api/entity_data.h

Issue 2401223002: [Sync] Renaming sync/api* to sync/model*. (Closed)
Patch Set: Missed a comment in a DEPS file, and rebasing. Created 4 years, 2 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/sync/api/entity_change.cc ('k') | components/sync/api/entity_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/api/entity_data.h
diff --git a/components/sync/api/entity_data.h b/components/sync/api/entity_data.h
deleted file mode 100644
index aa88493fd88beaaae7f7f7d24d4a61e9ccd78ef6..0000000000000000000000000000000000000000
--- a/components/sync/api/entity_data.h
+++ /dev/null
@@ -1,92 +0,0 @@
-// Copyright 2015 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.
-
-#ifndef COMPONENTS_SYNC_API_ENTITY_DATA_H_
-#define COMPONENTS_SYNC_API_ENTITY_DATA_H_
-
-#include <map>
-#include <memory>
-#include <string>
-#include <vector>
-
-#include "base/macros.h"
-#include "base/time/time.h"
-#include "base/values.h"
-#include "components/sync/base/proto_value_ptr.h"
-#include "components/sync/protocol/sync.pb.h"
-
-namespace syncer {
-
-struct EntityData;
-
-struct EntityDataTraits {
- static void SwapValue(EntityData* dest, EntityData* src);
- static bool HasValue(const EntityData& value);
- static const EntityData& DefaultValue();
-};
-
-typedef ProtoValuePtr<EntityData, EntityDataTraits> EntityDataPtr;
-typedef std::vector<EntityDataPtr> EntityDataList;
-typedef std::map<std::string, EntityDataPtr> EntityDataMap;
-
-// A light-weight container for sync entity data which represents either
-// local data created on the ModelTypeService side or remote data created
-// on ModelTypeWorker.
-// EntityData is supposed to be wrapped and passed by reference.
-struct EntityData {
- public:
- EntityData();
- ~EntityData();
-
- // Typically this is a server assigned sync ID, although for a local change
- // that represents a new entity this field might be either empty or contain
- // a temporary client sync ID.
- std::string id;
-
- // A hash based on the client tag and model type.
- // Used for various map lookups. Should always be available.
- // Sent to the server as SyncEntity::client_defined_unique_tag.
- std::string client_tag_hash;
-
- // Entity name, used mostly for Debug purposes.
- std::string non_unique_name;
-
- // Model type specific sync data.
- sync_pb::EntitySpecifics specifics;
-
- // Entity creation and modification timestamps.
- base::Time creation_time;
- base::Time modification_time;
-
- // Sync ID of the parent entity. This is supposed to be set only for
- // hierarchical datatypes (e.g. Bookmarks).
- std::string parent_id;
-
- // Unique position of an entity among its siblings. This is supposed to be
- // set only for datatypes that support positioning (e.g. Bookmarks).
- sync_pb::UniquePosition unique_position;
-
- // True if EntityData represents deleted entity; otherwise false.
- // Note that EntityData would be considered to represent a deletion if its
- // specifics hasn't been set.
- bool is_deleted() const { return specifics.ByteSize() == 0; }
-
- // Transfers this struct's data to EntityDataPtr.
- // The return value must be assigned into another EntityDataPtr.
- EntityDataPtr PassToPtr() WARN_UNUSED_RESULT;
-
- // Dumps all info into a DictionaryValue and returns it.
- std::unique_ptr<base::DictionaryValue> ToDictionaryValue();
-
- private:
- friend struct EntityDataTraits;
- // Used to transfer the data without copying.
- void Swap(EntityData* other);
-
- DISALLOW_COPY_AND_ASSIGN(EntityData);
-};
-
-} // namespace syncer
-
-#endif // COMPONENTS_SYNC_API_ENTITY_DATA_H_
« no previous file with comments | « components/sync/api/entity_change.cc ('k') | components/sync/api/entity_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698