Home | History | Annotate | Download | only in extensions

Lines Matching refs:GURL

8 #include "googleurl/src/gurl.h"
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")));
40 // GURL normalizes the URL to have a trailing "/"
41 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com")));
42 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com/")));
43 EXPECT_FALSE(script.MatchesUrl(GURL("http://mail.google.com/foo")));
49 // GURL normalizes the URL to have a trailing "/"
50 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com")));
51 EXPECT_TRUE(script.MatchesUrl(GURL("http://mail.google.com/foo")));
52 EXPECT_FALSE(script.MatchesUrl(GURL("https://mail.google.com/foo")));
58 EXPECT_TRUE(script.MatchesUrl(GURL("http://foo.com/bar")));
59 EXPECT_TRUE(script.MatchesUrl(GURL("http://hot.com/dog")));
60 EXPECT_TRUE(script.MatchesUrl(GURL("https://hot.com/dog")));
61 EXPECT_TRUE(script.MatchesUrl(GURL("file:///foo/bar")));
67 EXPECT_TRUE(script.MatchesUrl(GURL("http://foo.com/bar")));
68 EXPECT_TRUE(script.MatchesUrl(GURL("http://baz.org/foo/bar")));
69 EXPECT_FALSE(script.MatchesUrl(GURL("http://baz.org")));
79 EXPECT_TRUE(script.MatchesUrl(GURL("http://monkey.com/foobar")));
80 EXPECT_FALSE(script.MatchesUrl(GURL("http://monkey.com/hotdog")));
98 EXPECT_FALSE(script.MatchesUrl(GURL("http://www.google.com/foo")));
103 EXPECT_FALSE(script.MatchesUrl(GURL("http://www.google.com/baz")));
106 EXPECT_TRUE(script.MatchesUrl(GURL("http://www.google.com/bar")));
110 EXPECT_TRUE(script.MatchesUrl(GURL("http://www.google.com/foo")));
114 EXPECT_TRUE(script.MatchesUrl(GURL("http://www.google.com/foo")));
129 GURL("chrome-user-script:/foo.user.js")));
133 GURL("chrome-user-script:/foo.user.css")));
137 GURL("chrome-user-script:/foo2.user.css")));