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

Side by Side Diff: chrome/common/extensions/api/content_scripts/content_scripts_handler.h

Issue 11724002: Move ContentScripts out of Extension (Closed) Base URL: http://git.chromium.org/chromium/src.git@dc_unref_browser_action
Patch Set: Created 7 years, 9 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 (c) 2013 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_API_CONTENT_SCRIPTS_CONTENT_SCRIPTS_HANDLER_H_
6 #define CHROME_COMMON_EXTENSIONS_API_CONTENT_SCRIPTS_CONTENT_SCRIPTS_HANDLER_H_
7
8 #include <string>
9
10 #include "chrome/common/extensions/extension.h"
11 #include "chrome/common/extensions/manifest_handler.h"
12 #include "chrome/common/extensions/user_script.h"
13
14 namespace extensions {
15
16 struct ContentScriptsInfo : public Extension::ManifestData {
17 ContentScriptsInfo();
18 virtual ~ContentScriptsInfo();
19
20 // Paths to the content scripts the extension contains (possibly empty).
21 UserScriptList content_scripts;
22
23 // Returns the content scripts for the extension (if the extension has
24 // no content scripts, this returns an empty list).
25 static const UserScriptList& GetContentScripts(const Extension* extension);
26 };
27
28 // Parses the "content_scripts" manifest key.
29 class ContentScriptsHandler : public ManifestHandler {
30 public:
31 ContentScriptsHandler();
32 virtual ~ContentScriptsHandler();
33
34 virtual bool Parse(Extension* extension, string16* error) OVERRIDE;
35 virtual bool Validate(const Extension* extension,
36 std::string* error,
37 std::vector<InstallWarning>* warnings) const OVERRIDE;
38
39 private:
40 virtual const std::vector<std::string> Keys() const OVERRIDE;
41
42 DISALLOW_COPY_AND_ASSIGN(ContentScriptsHandler);
43 };
44
45 } // namespace extensions
46
47 #endif // CHROME_COMMON_EXTENSIONS_API_CONTENT_SCRIPTS_CONTENT_SCRIPTS_HANDLER_ H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698