HomeSort by relevance Sort by last modified time
    Searched defs:MatchesURL (Results 1 - 7 of 7) sorted by null

  /external/chromium/chrome/common/extensions/
file_browser_handler.cc 24 bool FileBrowserHandler::MatchesURL(const GURL& url) const {
27 if (pattern->MatchesUrl(url))
  /external/chromium_org/extensions/common/
url_pattern_set.cc 151 bool URLPatternSet::MatchesURL(const GURL& url) const {
154 if (pattern->MatchesURL(url))
user_script.cc 87 bool UserScript::MatchesURL(const GURL& url) const {
89 if (!url_set_.MatchesURL(url))
94 if (exclude_url_set_.MatchesURL(url))
url_pattern.cc 312 bool URLPattern::MatchesURL(const GURL& test) const {
402 // Make the behaviour of OverlapsWith consistent with MatchesURL, which is
  /external/chromium_org/chrome/common/extensions/api/
extension_api_unittest.cc 598 bool MatchesURL(
608 EXPECT_TRUE(MatchesURL(api.get(), "app", "http://example.com/example.html"));
609 EXPECT_TRUE(MatchesURL(api.get(), "app", "https://blah.net"));
610 EXPECT_TRUE(MatchesURL(api.get(), "app", "file://somefile.html"));
613 EXPECT_FALSE(MatchesURL(api.get(), "app", "about:flags"));
614 EXPECT_FALSE(MatchesURL(api.get(), "app", "chrome://flags"));
617 EXPECT_TRUE(MatchesURL(api.get(), "app",
621 EXPECT_FALSE(MatchesURL(api.get(), "storage",
623 EXPECT_FALSE(MatchesURL(api.get(), "storage", "https://blah.net"));
624 EXPECT_FALSE(MatchesURL(api.get(), "storage", "file://somefile.html"))
    [all...]
  /external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
file_browser_handler.cc 75 bool FileBrowserHandler::MatchesURL(const GURL& url) const {
76 return url_set_.MatchesURL(url);
  /external/chromium/chrome/browser/prerender/
prerender_contents.cc 493 bool PrerenderContents::MatchesURL(const GURL& url) const {

Completed in 81 milliseconds