Home
last modified time | relevance | path

Searched refs:effective_domain (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/chrome/browser/predictors/
Dlogged_in_predictor_table.cc42 string effective_domain( in GetKeyFromDomain() local
46 if (effective_domain.empty()) in GetKeyFromDomain()
47 effective_domain = domain; in GetKeyFromDomain()
50 if (!effective_domain.empty() && effective_domain[0] == '.') in GetKeyFromDomain()
51 return effective_domain.substr(1); in GetKeyFromDomain()
52 return effective_domain; in GetKeyFromDomain()
/external/chromium_org/net/cookies/
Dcookie_monster.cc2085 std::string effective_domain( in GetKey() local
2088 if (effective_domain.empty()) in GetKey()
2089 effective_domain = domain; in GetKey()
2091 if (!effective_domain.empty() && effective_domain[0] == '.') in GetKey()
2092 return effective_domain.substr(1); in GetKey()
2093 return effective_domain; in GetKey()