HomeSort by relevance Sort by last modified time
    Searched refs:MatchesUrl (Results 1 - 10 of 10) sorted by null

  /external/chromium/chrome/common/extensions/
user_script_unittest.cc 23 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com")));
24 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com/foo")));
25 EXPECT_TRUE(script.MatchesUrl(GURL("https://mail.google.com/foo")));
26 EXPECT_TRUE(script.MatchesUrl(GURL("ftp://mail.google.com/foo")));
27 EXPECT_TRUE(script.MatchesUrl(GURL("http://woo.mail.google.com/foo")));
28 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.yahoo.com/bar")));
29 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.msn.com/baz")));
30 EXPECT_FALSE(script.MatchesUrl(GURL("http://www.hotmail.com")));
33 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com")));
34 EXPECT_FALSE(script.MatchesUrl(GURL("http://mail.google.com/foo")))
    [all...]
url_pattern_unittest.cc 94 EXPECT_TRUE(pattern.MatchesUrl(GURL("http://google.com")));
95 EXPECT_TRUE(pattern.MatchesUrl(GURL("http://yahoo.com")));
96 EXPECT_TRUE(pattern.MatchesUrl(GURL("http://google.com/foo")));
97 EXPECT_FALSE(pattern.MatchesUrl(GURL("https://google.com")));
98 EXPECT_TRUE(pattern.MatchesUrl(GURL("http://74.125.127.100/search")));
111 EXPECT_TRUE(pattern.MatchesUrl(GURL("https://www.google.com/foo")));
112 EXPECT_TRUE(pattern.MatchesUrl(GURL("https://www.google.com/foobar")));
113 EXPECT_FALSE(pattern.MatchesUrl(GURL("http://www.google.com/foo")));
114 EXPECT_FALSE(pattern.MatchesUrl(GURL("https://www.google.com/")));
128 EXPECT_TRUE(pattern.MatchesUrl(GURL("http://google.com/foobar")))
    [all...]
file_browser_handler.cc 24 bool FileBrowserHandler::MatchesURL(const GURL& url) const {
27 if (pattern->MatchesUrl(url))
extension_extent.cc 40 if (pattern->MatchesUrl(url))
url_pattern.h 185 bool MatchesUrl(const GURL& url) const;
user_script.cc 16 if (pattern->MatchesUrl(url))
74 bool UserScript::MatchesUrl(const GURL& url) const {
user_script.h 174 bool MatchesUrl(const GURL& url) const;
url_pattern.cc 218 bool URLPattern::MatchesUrl(const GURL &test) const {
extension.cc     [all...]
  /external/chromium/chrome/browser/extensions/
user_script_listener.cc 53 if ((*it).MatchesUrl(request->url())) {

Completed in 813 milliseconds