| 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 5d2a4122ee4333a614d9bc91ffcb9b70ba730d51..8c39738d819124769fd2dc3c31cf64780a9dac45 100644
|
| --- a/chrome/browser/browsing_data/cookies_tree_model.cc
|
| +++ b/chrome/browser/browsing_data/cookies_tree_model.cc
|
| @@ -76,8 +76,9 @@ std::string CanonicalizeHost(const GURL& url) {
|
| }
|
|
|
| std::string host = url.host();
|
| - std::string retval = net::RegistryControlledDomainService::
|
| - GetDomainAndRegistry(host);
|
| + std::string retval =
|
| + net::RegistryControlledDomainService::GetDomainAndRegistry(
|
| + host, net::RCDS::EXCLUDE_PRIVATE_REGISTRIES);
|
| if (!retval.length()) // Is an IP address or other special origin.
|
| return host;
|
|
|
|
|