| Index: chrome/browser/browsing_data/cookies_tree_model.cc
|
| diff --git a/chrome/browser/browsing_data/cookies_tree_model.cc b/chrome/browser/browsing_data/cookies_tree_model.cc
|
| index 71d2259901d6c009bde7dea0ed28fcb3badf5982..4c22203781d27f019b5a211162c7503e7869bbb0 100644
|
| --- a/chrome/browser/browsing_data/cookies_tree_model.cc
|
| +++ b/chrome/browser/browsing_data/cookies_tree_model.cc
|
| @@ -76,8 +76,10 @@ std::string CanonicalizeHost(const GURL& url) {
|
| }
|
|
|
| std::string host = url.host();
|
| - std::string retval = net::RegistryControlledDomainService::
|
| - GetDomainAndRegistry(host);
|
| + std::string retval =
|
| + net::registry_controlled_domains::GetDomainAndRegistry(
|
| + host,
|
| + net::registry_controlled_domains::EXCLUDE_PRIVATE_REGISTRIES);
|
| if (!retval.length()) // Is an IP address or other special origin.
|
| return host;
|
|
|
|
|