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

Side by Side Diff: chrome/common/extensions/manifest_handlers/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: Latest master for CQ 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_MANIFEST_HANDLERS_CONTENT_SCRIPTS_HANDLER_H_
6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_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 // Returns true if the extension has a content script declared at |url|.
28 static bool ExtensionHasScriptAtURL(const Extension* extension,
29 const GURL& url);
30 };
31
32 // Parses the "content_scripts" manifest key.
33 class ContentScriptsHandler : public ManifestHandler {
34 public:
35 ContentScriptsHandler();
36 virtual ~ContentScriptsHandler();
37
38 virtual bool Parse(Extension* extension, string16* error) OVERRIDE;
39 virtual bool Validate(const Extension* extension,
40 std::string* error,
41 std::vector<InstallWarning>* warnings) const OVERRIDE;
42
43 private:
44 virtual const std::vector<std::string> Keys() const OVERRIDE;
45
46 DISALLOW_COPY_AND_ASSIGN(ContentScriptsHandler);
47 };
48
49 } // namespace extensions
50
51 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_CONTENT_SCRIPTS_HANDLER_H_
OLDNEW
« no previous file with comments | « chrome/common/extensions/extension_unittest.cc ('k') | chrome/common/extensions/manifest_handlers/content_scripts_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698