| Index: chrome/common/extensions/manifest_handler_unittest.cc
|
| diff --git a/chrome/common/extensions/manifest_handler_unittest.cc b/chrome/common/extensions/manifest_handler_unittest.cc
|
| index 0c3f77aa08162c630055a02c5a8494bb344f9a9b..9c5cb02bea9c91be019b7cd592ddb3b679e3a53c 100644
|
| --- a/chrome/common/extensions/manifest_handler_unittest.cc
|
| +++ b/chrome/common/extensions/manifest_handler_unittest.cc
|
| @@ -131,13 +131,14 @@ class ManifestHandlerTest : public testing::Test {
|
| return true;
|
| }
|
|
|
| - virtual bool Validate(const Extension* extension,
|
| - std::string* error,
|
| - std::vector<InstallWarning>* warnings) const {
|
| + virtual bool Validate(
|
| + const Extension* extension,
|
| + std::string* error,
|
| + std::vector<InstallWarning>* warnings) const OVERRIDE {
|
| return return_value_;
|
| }
|
|
|
| - virtual bool AlwaysValidateForType(Manifest::Type type) const {
|
| + virtual bool AlwaysValidateForType(Manifest::Type type) const OVERRIDE {
|
| return always_validate_;
|
| }
|
|
|
|
|