blob: 62e68d33833746755e9bc4eb9d950a3ff38e452c [file] [log] [blame]
Mustafa Emre Acer5812f4742022-11-17 20:13:241// Copyright 2022 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "url/url_features.h"
6
7namespace url {
8
9BASE_FEATURE(kUseIDNA2008NonTransitional,
10 "UseIDNA2008NonTransitional",
11 base::FEATURE_DISABLED_BY_DEFAULT);
12
13bool IsUsingIDNA2008NonTransitional() {
14 return base::FeatureList::IsEnabled(kUseIDNA2008NonTransitional);
15}
16} // namespace url