Lines Matching refs:url
13 const GURL& url) {
16 if (pattern->MatchesUrl(url))
24 const GURL& url) {
27 if (MatchPattern(url.spec(), *glob))
44 bool UserScript::IsURLUserScript(const GURL& url,
46 return EndsWith(url.ExtractFileName(), kFileExtension, false) &&
52 const GURL& url)
55 url_(url) {
74 bool UserScript::MatchesUrl(const GURL& url) const {
76 if (!UrlMatchesPatterns(&url_patterns_, url))
81 if (!UrlMatchesGlobs(&globs_, url))
86 if (UrlMatchesGlobs(&exclude_globs_, url))
100 // Read url.
101 std::string url;
102 CHECK(pickle.ReadString(iter, &url));
103 set_url(GURL(url));
125 // Write url patterns.
178 // Read url patterns.