| Index: extensions/common/features/api_feature.h
|
| diff --git a/extensions/common/features/api_feature.h b/extensions/common/features/api_feature.h
|
| index 3cc86dbcc3ea348de26e3bc65c7335aa088e3527..7a30cb432d0f07602358b11952c89e01c8f9c243 100644
|
| --- a/extensions/common/features/api_feature.h
|
| +++ b/extensions/common/features/api_feature.h
|
| @@ -14,12 +14,12 @@ namespace extensions {
|
| class APIFeature : public SimpleFeature {
|
| public:
|
| APIFeature();
|
| - virtual ~APIFeature();
|
| + ~APIFeature() override;
|
|
|
| // extensions::Feature:
|
| - virtual bool IsInternal() const override;
|
| + bool IsInternal() const override;
|
|
|
| - virtual std::string Parse(const base::DictionaryValue* value) override;
|
| + std::string Parse(const base::DictionaryValue* value) override;
|
|
|
| private:
|
| bool internal_;
|
|
|