summaryrefslogtreecommitdiffstats
path: root/net/ssl/server_bound_cert_service.cc
diff options
context:
space:
mode:
Diffstat (limited to 'net/ssl/server_bound_cert_service.cc')
-rw-r--r--net/ssl/server_bound_cert_service.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/ssl/server_bound_cert_service.cc b/net/ssl/server_bound_cert_service.cc
index 327ca93..470ef54 100644
--- a/net/ssl/server_bound_cert_service.cc
+++ b/net/ssl/server_bound_cert_service.cc
@@ -413,8 +413,7 @@ ServerBoundCertService::~ServerBoundCertService() {
//static
std::string ServerBoundCertService::GetDomainForHost(const std::string& host) {
std::string domain =
- registry_controlled_domains::GetDomainAndRegistry(
- host, registry_controlled_domains::EXCLUDE_PRIVATE_REGISTRIES);
+ RegistryControlledDomainService::GetDomainAndRegistry(host);
if (domain.empty())
return host;
return domain;