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
34
bool
IsGaiaSignonRealm
(const GURL& url);
gaia_auth_util.cc
87
bool
IsGaiaSignonRealm
(const GURL& url) {
/external/chromium_org/chrome/browser/signin/
signin_header_helper.cc
253
if (!gaia::
IsGaiaSignonRealm
(request->url().GetOrigin()))
/external/chromium_org/chrome/browser/ui/sync/
one_click_signin_helper.cc
348
// can also be "
IsGaiaSignonRealm
" so stop if we get to the end (but be sure
351
while (gaia::
IsGaiaSignonRealm
(local_continue_url.GetOrigin())) {
386
// Also using
IsGaiaSignonRealm
() to handle overriding with command line.
387
return gaia::
IsGaiaSignonRealm
(url.GetOrigin()) ||
[
all
...]
/external/chromium_org/chrome/browser/first_run/
first_run.cc
369
gaia::
IsGaiaSignonRealm
(contents->GetURL().GetOrigin()) ||
Completed in 85 milliseconds