Upstream version 10.39.225.0
[platform/framework/web/crosswalk.git] / src / sync / test / fake_server / bookmark_entity.h
index 8c68a81..1ae449d 100644 (file)
@@ -36,15 +36,7 @@ class BookmarkEntity : public FakeServerEntity {
       FakeServerEntity* current_server_entity,
       const std::string& parent_id);
 
-  // FakeServerEntity implementation.
-  virtual std::string GetParentId() const OVERRIDE;
-  virtual sync_pb::SyncEntity* SerializeAsProto() OVERRIDE;
-  virtual bool IsDeleted() const OVERRIDE;
-  virtual bool IsFolder() const OVERRIDE;
-
- private:
   BookmarkEntity(const std::string& id,
-                 const syncer::ModelType& model_type,
                  int64 version,
                  const std::string& name,
                  const std::string& originator_cache_guid,
@@ -56,6 +48,13 @@ class BookmarkEntity : public FakeServerEntity {
                  int64 creation_time,
                  int64 last_modified_time);
 
+  // FakeServerEntity implementation.
+  virtual std::string GetParentId() const OVERRIDE;
+  virtual void SerializeAsProto(sync_pb::SyncEntity* proto) OVERRIDE;
+  virtual bool IsDeleted() const OVERRIDE;
+  virtual bool IsFolder() const OVERRIDE;
+
+ private:
   // All member values have equivalent fields in SyncEntity.
   std::string originator_cache_guid_;
   std::string originator_client_item_id_;