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

Unified Diff: sync/test/fake_server/fake_server_entity.h

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 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 | « sync/test/fake_server/fake_server.cc ('k') | sync/test/fake_server/fake_server_entity.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/test/fake_server/fake_server_entity.h
diff --git a/sync/test/fake_server/fake_server_entity.h b/sync/test/fake_server/fake_server_entity.h
deleted file mode 100644
index be2da7df545b1b5dfce475f90c1a4566d5687d0c..0000000000000000000000000000000000000000
--- a/sync/test/fake_server/fake_server_entity.h
+++ /dev/null
@@ -1,84 +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.
-
-#ifndef SYNC_TEST_FAKE_SERVER_FAKE_SERVER_ENTITY_H_
-#define SYNC_TEST_FAKE_SERVER_FAKE_SERVER_ENTITY_H_
-
-#include <stdint.h>
-
-#include <map>
-#include <string>
-
-#include "sync/internal_api/public/base/model_type.h"
-#include "sync/protocol/sync.pb.h"
-
-namespace fake_server {
-
-// The representation of a Sync entity for the fake server.
-class FakeServerEntity {
- public:
- // Creates an ID of the form <type><separator><inner-id> where
- // <type> is the EntitySpecifics field number for |model_type|, <separator>
- // is kIdSeparator, and <inner-id> is |inner_id|.
- //
- // If |inner_id| is globally unique, then the returned ID will also be
- // globally unique.
- static std::string CreateId(const syncer::ModelType& model_type,
- const std::string& inner_id);
-
- // Returns the ID string of the top level node for the specified type.
- static std::string GetTopLevelId(const syncer::ModelType& model_type);
-
- virtual ~FakeServerEntity();
- const std::string& GetId() const;
- syncer::ModelType GetModelType() const;
- int64_t GetVersion() const;
- void SetVersion(int64_t version);
- const std::string& GetName() const;
- void SetName(const std::string& name);
-
- // Replaces |specifics_| with |updated_specifics|. This method is meant to be
- // used to mimic a client commit.
- void SetSpecifics(const sync_pb::EntitySpecifics& updated_specifics);
-
- // Common data items needed by server
- virtual bool RequiresParentId() const = 0;
- virtual std::string GetParentId() const = 0;
- virtual void SerializeAsProto(sync_pb::SyncEntity* proto) const = 0;
- virtual bool IsDeleted() const;
- virtual bool IsFolder() const;
- virtual bool IsPermanent() const;
-
- protected:
- // Extracts the ModelType from |id|. If |id| is malformed or does not contain
- // a valid ModelType, UNSPECIFIED is returned.
- static syncer::ModelType GetModelTypeFromId(const std::string& id);
-
- FakeServerEntity(const std::string& id,
- const syncer::ModelType& model_type,
- int64_t version,
- const std::string& name);
-
- void SerializeBaseProtoFields(sync_pb::SyncEntity* sync_entity) const;
-
- private:
- // The entity's ID.
- std::string id_;
-
- // The ModelType that categorizes this entity.
- syncer::ModelType model_type_;
-
- // The version of this entity.
- int64_t version_;
-
- // The name of the entity.
- std::string name_;
-
- // The EntitySpecifics for the entity.
- sync_pb::EntitySpecifics specifics_;
-};
-
-} // namespace fake_server
-
-#endif // SYNC_TEST_FAKE_SERVER_FAKE_SERVER_ENTITY_H_
« no previous file with comments | « sync/test/fake_server/fake_server.cc ('k') | sync/test/fake_server/fake_server_entity.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698