OLD | NEW |
1 // Copyright 2009 The Chromium Authors. All rights reserved. | 1 // Copyright 2009 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_USER_SCRIPT_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_USER_SCRIPT_H_ |
6 #define CHROME_COMMON_EXTENSIONS_USER_SCRIPT_H_ | 6 #define CHROME_COMMON_EXTENSIONS_USER_SCRIPT_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 void clear_url_patterns() { url_patterns_.clear(); } | 104 void clear_url_patterns() { url_patterns_.clear(); } |
105 | 105 |
106 // List of js scripts for this user script | 106 // List of js scripts for this user script |
107 FileList& js_scripts() { return js_scripts_; } | 107 FileList& js_scripts() { return js_scripts_; } |
108 const FileList& js_scripts() const { return js_scripts_; } | 108 const FileList& js_scripts() const { return js_scripts_; } |
109 | 109 |
110 // List of css scripts for this user script | 110 // List of css scripts for this user script |
111 FileList& css_scripts() { return css_scripts_; } | 111 FileList& css_scripts() { return css_scripts_; } |
112 const FileList& css_scripts() const { return css_scripts_; } | 112 const FileList& css_scripts() const { return css_scripts_; } |
113 | 113 |
114 const std::string& extension_id() const { return extension_id_; } | |
115 void set_extension_id(const std::string& id) { extension_id_ = id; } | |
116 | |
117 bool is_standalone() { return extension_id_.empty(); } | |
118 | |
119 // Returns true if the script should be applied to the specified URL, false | 114 // Returns true if the script should be applied to the specified URL, false |
120 // otherwise. | 115 // otherwise. |
121 bool MatchesUrl(const GURL& url); | 116 bool MatchesUrl(const GURL& url); |
122 | 117 |
123 // Serialize the UserScript into a pickle. The content of the scripts and | 118 // Serialize the UserScript into a pickle. The content of the scripts and |
124 // paths to UserScript::Files will not be serialized! | 119 // paths to UserScript::Files will not be serialized! |
125 void Pickle(::Pickle* pickle) const; | 120 void Pickle(::Pickle* pickle) const; |
126 | 121 |
127 // Deserialize the script from a pickle. Note that this always succeeds | 122 // Deserialize the script from a pickle. Note that this always succeeds |
128 // because presumably we were the one that pickled it, and we did it | 123 // because presumably we were the one that pickled it, and we did it |
(...skipping 10 matching lines...) Expand all Loading... |
139 | 134 |
140 // URLPatterns that determine pages to inject the script into. These are | 135 // URLPatterns that determine pages to inject the script into. These are |
141 // only used with scripts that are part of extensions. | 136 // only used with scripts that are part of extensions. |
142 std::vector<URLPattern> url_patterns_; | 137 std::vector<URLPattern> url_patterns_; |
143 | 138 |
144 // List of js scripts defined in content_scripts | 139 // List of js scripts defined in content_scripts |
145 FileList js_scripts_; | 140 FileList js_scripts_; |
146 | 141 |
147 // List of css scripts defined in content_scripts | 142 // List of css scripts defined in content_scripts |
148 FileList css_scripts_; | 143 FileList css_scripts_; |
149 | |
150 // The ID of the extension this script is a part of, if any. Can be empty if | |
151 // the script is a "standlone" user script. | |
152 std::string extension_id_; | |
153 }; | 144 }; |
154 | 145 |
155 typedef std::vector<UserScript> UserScriptList; | 146 typedef std::vector<UserScript> UserScriptList; |
156 | 147 |
157 #endif // CHROME_COMMON_EXTENSIONS_USER_SCRIPT_H_ | 148 #endif // CHROME_COMMON_EXTENSIONS_USER_SCRIPT_H_ |
OLD | NEW |