blob: 62e68d33833746755e9bc4eb9d950a3ff38e452c [file] [log] [blame]
// Copyright 2022 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "url/url_features.h"
namespace url {
BASE_FEATURE(kUseIDNA2008NonTransitional,
"UseIDNA2008NonTransitional",
base::FEATURE_DISABLED_BY_DEFAULT);
bool IsUsingIDNA2008NonTransitional() {
return base::FeatureList::IsEnabled(kUseIDNA2008NonTransitional);
}
} // namespace url