| Index: chrome/common/extensions/api/commands/commands_handler.h
|
| diff --git a/chrome/common/extensions/api/commands/commands_handler.h b/chrome/common/extensions/api/commands/commands_handler.h
|
| index db2b1f02ee366ee2f86ee1037c1e4850dd4b0976..37315225c9d96d95f52e41e1db9969ca35292f81 100644
|
| --- a/chrome/common/extensions/api/commands/commands_handler.h
|
| +++ b/chrome/common/extensions/api/commands/commands_handler.h
|
| @@ -38,8 +38,8 @@ class CommandsHandler : public ManifestHandler {
|
| CommandsHandler();
|
| virtual ~CommandsHandler();
|
|
|
| - virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE;
|
| - virtual bool AlwaysParseForType(Manifest::Type type) const OVERRIDE;
|
| + virtual bool Parse(Extension* extension, base::string16* error) override;
|
| + virtual bool AlwaysParseForType(Manifest::Type type) const override;
|
|
|
| private:
|
| // If the extension defines a browser action, but no command for it, then
|
| @@ -48,7 +48,7 @@ class CommandsHandler : public ManifestHandler {
|
| void MaybeSetBrowserActionDefault(const Extension* extension,
|
| CommandsInfo* info);
|
|
|
| - virtual const std::vector<std::string> Keys() const OVERRIDE;
|
| + virtual const std::vector<std::string> Keys() const override;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(CommandsHandler);
|
| };
|
|
|