Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Side by Side Diff: chrome/common/extensions/manifest_handlers/extension_action_handler.h

Issue 624453003: Clean up Extension Action Handlers Pt 1/2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_EXTENSION_ACTION_HANDLER_H_
6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_EXTENSION_ACTION_HANDLER_H_
7
8 #include <string>
9
10 #include "extensions/common/manifest_handler.h"
11
12 namespace extensions {
13
14 // Parses the "page_action" and "browser_action" manifest keys.
15 class ExtensionActionHandler : public ManifestHandler {
16 public:
17 ExtensionActionHandler();
18 virtual ~ExtensionActionHandler();
19
20 virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE;
21 virtual bool Validate(const Extension* extension,
22 std::string* error,
23 std::vector<InstallWarning>* warnings) const OVERRIDE;
24
25 private:
26 virtual const std::vector<std::string> Keys() const OVERRIDE;
27
28 DISALLOW_COPY_AND_ASSIGN(ExtensionActionHandler);
29 };
30
31 } // namespace extensions
32
33 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_EXTENSION_ACTION_HANDLER_H _
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698