| Index: sync/test/fake_encryptor.h
|
| diff --git a/sync/test/fake_encryptor.h b/sync/test/fake_encryptor.h
|
| index d6071132382055bce4a343912253dafbb17fdd0b..a168999a81278b13bfb035217ab87b387fec6a03 100644
|
| --- a/sync/test/fake_encryptor.h
|
| +++ b/sync/test/fake_encryptor.h
|
| @@ -14,13 +14,13 @@ namespace syncer {
|
| // ciphertext. Obviously, this should be used only for testing.
|
| class FakeEncryptor : public Encryptor {
|
| public:
|
| - virtual ~FakeEncryptor();
|
| + ~FakeEncryptor() override;
|
|
|
| - virtual bool EncryptString(const std::string& plaintext,
|
| - std::string* ciphertext) override;
|
| + bool EncryptString(const std::string& plaintext,
|
| + std::string* ciphertext) override;
|
|
|
| - virtual bool DecryptString(const std::string& ciphertext,
|
| - std::string* plaintext) override;
|
| + bool DecryptString(const std::string& ciphertext,
|
| + std::string* plaintext) override;
|
| };
|
|
|
| } // namespace syncer
|
|
|