Searched defs:other_url (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/chrome/common/
H A Dsearch_urls.cc13 bool MatchesOrigin(const GURL& my_url, const GURL& other_url) { argument
14 return my_url.host() == other_url.host() &&
15 my_url.port() == other_url.port() &&
16 (my_url.scheme() == other_url.scheme() ||
18 other_url.SchemeIs(url::kHttpScheme)));
22 bool MatchesOriginAndPath(const GURL& my_url, const GURL& other_url) { argument
23 return MatchesOrigin(my_url, other_url) && my_url.path() == other_url.path();

Completed in 307 milliseconds