Searched defs:MatchesURL (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/chrome/common/extensions/api/
H A Dextension_api_unittest.cc662 bool MatchesURL( function in namespace:extensions
672 EXPECT_TRUE(MatchesURL(api.get(), "app", "http://example.com/example.html"));
673 EXPECT_TRUE(MatchesURL(api.get(), "app", "https://blah.net"));
674 EXPECT_TRUE(MatchesURL(api.get(), "app", "file://somefile.html"));
677 EXPECT_TRUE(MatchesURL(api.get(), "app", "about:flags"));
678 EXPECT_TRUE(MatchesURL(api.get(), "app", "chrome://flags"));
681 EXPECT_TRUE(MatchesURL(api.get(), "app",
685 EXPECT_FALSE(MatchesURL(api.get(), "storage",
687 EXPECT_FALSE(MatchesURL(api.get(), "storage", "https://blah.net"));
688 EXPECT_FALSE(MatchesURL(ap
[all...]
/external/chromium_org/chrome/common/extensions/api/file_browser_handlers/
H A Dfile_browser_handler.cc75 bool FileBrowserHandler::MatchesURL(const GURL& url) const { function in class:FileBrowserHandler
76 return url_set_.MatchesURL(url);
/external/chromium_org/extensions/common/
H A Durl_pattern_set.cc176 bool URLPatternSet::MatchesURL(const GURL& url) const { function in class:extensions::URLPatternSet
179 if (pattern->MatchesURL(url))
H A Duser_script.cc101 bool UserScript::MatchesURL(const GURL& url) const { function in class:extensions::UserScript
103 if (!url_set_.MatchesURL(url))
108 if (exclude_url_set_.MatchesURL(url))
H A Durl_pattern.cc345 bool URLPattern::MatchesURL(const GURL& test) const { function in class:URLPattern
476 // Make the behaviour of OverlapsWith consistent with MatchesURL, which is

Completed in 94 milliseconds