| Index: third_party/WebKit/Source/platform/network/NetworkUtils.h
|
| diff --git a/third_party/WebKit/Source/platform/network/NetworkUtils.h b/third_party/WebKit/Source/platform/network/NetworkUtils.h
|
| index 98e733a6ef63e5645e5ab3e99085fb8a07b95043..471ebb1a848da128f32dfa32b2ad7f2bb8855d2b 100644
|
| --- a/third_party/WebKit/Source/platform/network/NetworkUtils.h
|
| +++ b/third_party/WebKit/Source/platform/network/NetworkUtils.h
|
| @@ -12,10 +12,17 @@ namespace blink {
|
|
|
| namespace NetworkUtils {
|
|
|
| +enum PrivateRegistryFilter {
|
| + IncludePrivateRegistries,
|
| + ExcludePrivateRegistries,
|
| +};
|
| +
|
| PLATFORM_EXPORT bool isReservedIPAddress(const String& host);
|
|
|
| PLATFORM_EXPORT bool isLocalHostname(const String& host, bool* isLocal6);
|
|
|
| +PLATFORM_EXPORT String getDomainAndRegistry(const String& host, PrivateRegistryFilter);
|
| +
|
| } // NetworkUtils
|
|
|
| } // namespace blink
|
|
|