| Index: components/nacl/loader/nacl_validation_query_unittest.cc
|
| diff --git a/components/nacl/loader/nacl_validation_query_unittest.cc b/components/nacl/loader/nacl_validation_query_unittest.cc
|
| index 288f1c44022371811515d985ca88becaf9d60be9..6c2dfa84c5bd1b8b99d7186759d9c75e8c85ed24 100644
|
| --- a/components/nacl/loader/nacl_validation_query_unittest.cc
|
| +++ b/components/nacl/loader/nacl_validation_query_unittest.cc
|
| @@ -39,7 +39,7 @@ class MockValidationDB : public NaClValidationDB {
|
| status_(true) {
|
| }
|
|
|
| - virtual bool QueryKnownToValidate(const std::string& signature) override {
|
| + bool QueryKnownToValidate(const std::string& signature) override {
|
| // The typecast is needed to work around gtest trying to take the address
|
| // of a constant.
|
| EXPECT_EQ((int) NaClValidationQuery::kDigestLength,
|
| @@ -52,7 +52,7 @@ class MockValidationDB : public NaClValidationDB {
|
| return status_;
|
| }
|
|
|
| - virtual void SetKnownToValidate(const std::string& signature) override {
|
| + void SetKnownToValidate(const std::string& signature) override {
|
| // The typecast is needed to work around gtest trying to take the address
|
| // of a constant.
|
| ASSERT_EQ((int) NaClValidationQuery::kDigestLength,
|
| @@ -67,8 +67,9 @@ class MockValidationDB : public NaClValidationDB {
|
| NaClValidationQuery::kDigestLength));
|
| }
|
|
|
| - virtual bool ResolveFileToken(struct NaClFileToken* file_token, int32* fd,
|
| - std::string* path) override {
|
| + bool ResolveFileToken(struct NaClFileToken* file_token,
|
| + int32* fd,
|
| + std::string* path) override {
|
| *fd = -1;
|
| *path = "";
|
| return false;
|
|
|