Index: sync/test/fake_server/tombstone_entity.h |
diff --git a/sync/test/fake_server/tombstone_entity.h b/sync/test/fake_server/tombstone_entity.h |
deleted file mode 100644 |
index 4e6462d8a5e5114fd39bbf53dc6dddcff4e29c50..0000000000000000000000000000000000000000 |
--- a/sync/test/fake_server/tombstone_entity.h |
+++ /dev/null |
@@ -1,36 +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_TOMBSTONE_ENTITY_H_ |
-#define SYNC_TEST_FAKE_SERVER_TOMBSTONE_ENTITY_H_ |
- |
-#include <string> |
- |
-#include "sync/internal_api/public/base/model_type.h" |
-#include "sync/protocol/sync.pb.h" |
-#include "sync/test/fake_server/fake_server_entity.h" |
- |
-namespace fake_server { |
- |
-// A Sync entity that represents a deleted item. |
-class TombstoneEntity : public FakeServerEntity { |
- public: |
- ~TombstoneEntity() override; |
- |
- // Factory function for TombstoneEntity. |
- static std::unique_ptr<FakeServerEntity> Create(const std::string& id); |
- |
- // FakeServerEntity implementation. |
- bool RequiresParentId() const override; |
- std::string GetParentId() const override; |
- void SerializeAsProto(sync_pb::SyncEntity* proto) const override; |
- bool IsDeleted() const override; |
- |
- private: |
- TombstoneEntity(const std::string& id, const syncer::ModelType& model_type); |
-}; |
- |
-} // namespace fake_server |
- |
-#endif // SYNC_TEST_FAKE_SERVER_TOMBSTONE_ENTITY_H_ |