Searched defs:globs (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/extensions/common/
H A Duser_script.cc19 bool UrlMatchesGlobs(const std::vector<std::string>* globs, argument
21 for (std::vector<std::string>::const_iterator glob = globs->begin();
22 glob != globs->end(); ++glob) {
157 const std::vector<std::string>& globs) const {
158 pickle->WriteUInt64(globs.size());
159 for (std::vector<std::string>::const_iterator glob = globs.begin();
160 glob != globs.end(); ++glob) {
207 std::vector<std::string>* globs) {
210 globs->clear();
214 globs
206 UnpickleGlobs(const ::Pickle& pickle, PickleIterator* iter, std::vector<std::string>* globs) argument
[all...]
H A Duser_script.h167 // The globs, if any, that determine which pages this script runs against.
169 const std::vector<std::string>& globs() const { return globs_; } function in class:extensions::UserScript
224 const std::vector<std::string>& globs) const;
231 std::vector<std::string>* globs);
254 // Greasemonkey-style globs that determine pages to inject the script into.

Completed in 1558 milliseconds