blob: 0f58f1484cabbd311ef857bef606ac5b7c1a74b9 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/renderer/webpublicsuffixlist_impl.h"
#include "net/base/registry_controlled_domains/registry_controlled_domain.h"
namespace content {
WebPublicSuffixListImpl::~WebPublicSuffixListImpl() {
}
size_t WebPublicSuffixListImpl::getPublicSuffixLength(
const blink::WebString& host) {
// Blink passes some things that aren't technically hosts like "*.foo", so
// use the permissive variant.
size_t result =
net::registry_controlled_domains::PermissiveGetHostRegistryLength(
host.utf8(),
net::registry_controlled_domains::INCLUDE_UNKNOWN_REGISTRIES,
net::registry_controlled_domains::INCLUDE_PRIVATE_REGISTRIES);
return result ? result : host.length();
}
} // namespace content