OLD | NEW |
---|---|
(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_SYNTHESIZE_BROWSER_ACTION_HAN DLER_H_ | |
6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_SYNTHESIZE_BROWSER_ACTION_HAN DLER_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "extensions/common/manifest_handler.h" | |
11 | |
12 namespace extensions { | |
13 | |
14 // Parses the "commands" manifest key. | |
Devlin
2014/06/26 16:29:13
nit: comment needs updating.
Finnur
2014/06/27 14:23:38
Done.
| |
15 // TODO(finnur): Combine the logic, as suggested in review 324393002. | |
16 class SynthesizeBrowserActionHandler : public ManifestHandler { | |
17 public: | |
18 SynthesizeBrowserActionHandler(); | |
19 virtual ~SynthesizeBrowserActionHandler(); | |
20 | |
21 virtual bool Parse(Extension* extension, base::string16* error) OVERRIDE; | |
22 virtual bool AlwaysParseForType(Manifest::Type type) const OVERRIDE; | |
23 | |
24 private: | |
25 virtual const std::vector<std::string> Keys() const OVERRIDE; | |
26 | |
27 DISALLOW_COPY_AND_ASSIGN(SynthesizeBrowserActionHandler); | |
28 }; | |
29 | |
30 } // namespace extensions | |
31 | |
32 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_SYNTHESIZE_BROWSER_ACTION_ HANDLER_H_ | |
OLD | NEW |