| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_EXTENSION_ACTION_HANDLER_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_EXTENSION_ACTION_HANDLER_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_EXTENSION_ACTION_HANDLER_H_ | 6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_EXTENSION_ACTION_HANDLER_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "extensions/common/manifest_handler.h" | 10 #include "extensions/common/manifest_handler.h" |
| 11 | 11 |
| 12 namespace extensions { | 12 namespace extensions { |
| 13 | 13 |
| 14 // Parses the "page_action" and "browser_action" manifest keys. | 14 // Parses the "page_action" and "browser_action" manifest keys. |
| 15 class ExtensionActionHandler : public ManifestHandler { | 15 class ExtensionActionHandler : public ManifestHandler { |
| 16 public: | 16 public: |
| 17 ExtensionActionHandler(); | 17 ExtensionActionHandler(); |
| 18 virtual ~ExtensionActionHandler(); | 18 virtual ~ExtensionActionHandler(); |
| 19 | 19 |
| 20 virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE; | 20 virtual bool Parse(Extension* extension, base::string16* error) override; |
| 21 virtual bool Validate(const Extension* extension, | 21 virtual bool Validate(const Extension* extension, |
| 22 std::string* error, | 22 std::string* error, |
| 23 std::vector<InstallWarning>* warnings) const OVERRIDE; | 23 std::vector<InstallWarning>* warnings) const override; |
| 24 | 24 |
| 25 private: | 25 private: |
| 26 virtual bool AlwaysParseForType(Manifest::Type type) const OVERRIDE; | 26 virtual bool AlwaysParseForType(Manifest::Type type) const override; |
| 27 virtual const std::vector<std::string> Keys() const OVERRIDE; | 27 virtual const std::vector<std::string> Keys() const override; |
| 28 | 28 |
| 29 DISALLOW_COPY_AND_ASSIGN(ExtensionActionHandler); | 29 DISALLOW_COPY_AND_ASSIGN(ExtensionActionHandler); |
| 30 }; | 30 }; |
| 31 | 31 |
| 32 } // namespace extensions | 32 } // namespace extensions |
| 33 | 33 |
| 34 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_EXTENSION_ACTION_HANDLER_H
_ | 34 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_EXTENSION_ACTION_HANDLER_H
_ |
| OLD | NEW |