OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsGaiaSignonRealm
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/google_apis/gaia/
gaia_auth_util_unittest.cc
96
TEST(GaiaAuthUtilTest,
IsGaiaSignonRealm
) {
98
EXPECT_TRUE(
IsGaiaSignonRealm
(GURL("https://accounts.google.com/")));
99
EXPECT_FALSE(
IsGaiaSignonRealm
(GURL("http://accounts.google.com/")));
102
EXPECT_FALSE(
IsGaiaSignonRealm
(GURL("https://www.google.com/")));
103
EXPECT_FALSE(
IsGaiaSignonRealm
(GURL("http://www.google.com/")));
104
EXPECT_FALSE(
IsGaiaSignonRealm
(GURL("https://google.com/")));
105
EXPECT_FALSE(
IsGaiaSignonRealm
(GURL("https://mail.google.com/")));
108
EXPECT_FALSE(
IsGaiaSignonRealm
(GURL("https://www.example.com/")));
gaia_auth_util.h
36
bool
IsGaiaSignonRealm
(const GURL& url);
gaia_auth_util.cc
68
bool
IsGaiaSignonRealm
(const GURL& url) {
/external/chromium_org/chrome/browser/signin/
signin_header_helper.cc
81
gaia::
IsGaiaSignonRealm
(origin);
109
if (gaia::
IsGaiaSignonRealm
(request->url().GetOrigin()) &&
/external/chromium_org/chrome/browser/ui/sync/
one_click_signin_helper.cc
462
// can also be "
IsGaiaSignonRealm
" so stop if we get to the end (but be sure
465
while (gaia::
IsGaiaSignonRealm
(local_continue_url.GetOrigin())) {
500
// Also using
IsGaiaSignonRealm
() to handle overriding with command line.
501
return gaia::
IsGaiaSignonRealm
(url.GetOrigin()) ||
778
if (!gaia::
IsGaiaSignonRealm
(url.GetOrigin()))
851
if (!gaia::
IsGaiaSignonRealm
(request->url().GetOrigin()))
[
all
...]
/external/chromium_org/chrome/browser/first_run/
first_run.cc
373
(gaia::
IsGaiaSignonRealm
(contents->GetURL().GetOrigin()) ||
Completed in 686 milliseconds