Mustafa Emre Acer | 5812f474 | 2022-11-17 20:13:24 | [diff] [blame^] | 1 | // 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 | |||||
7 | namespace url { | ||||
8 | |||||
9 | BASE_FEATURE(kUseIDNA2008NonTransitional, | ||||
10 | "UseIDNA2008NonTransitional", | ||||
11 | base::FEATURE_DISABLED_BY_DEFAULT); | ||||
12 | |||||
13 | bool IsUsingIDNA2008NonTransitional() { | ||||
14 | return base::FeatureList::IsEnabled(kUseIDNA2008NonTransitional); | ||||
15 | } | ||||
16 | } // namespace url |