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 |
index e7f86db2d65f829f2e33bb31d27798939d603fcd..1f4986ffc515fcabb7d9c52bd363516d8f9f5725 100644 |
--- a/sync/test/fake_server/tombstone_entity.h |
+++ b/sync/test/fake_server/tombstone_entity.h |
@@ -17,16 +17,16 @@ namespace fake_server { |
// A Sync entity that represents a deleted item. |
class TombstoneEntity : public FakeServerEntity { |
public: |
- virtual ~TombstoneEntity(); |
+ ~TombstoneEntity() override; |
// Factory function for TombstoneEntity. |
static FakeServerEntity* Create(const std::string& id); |
// 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; |
+ std::string GetParentId() const override; |
+ void SerializeAsProto(sync_pb::SyncEntity* proto) override; |
+ bool IsDeleted() const override; |
+ bool IsFolder() const override; |
private: |
TombstoneEntity(const std::string& id, const syncer::ModelType& model_type); |