blob: 7f54bb0ecdd4dece5f6df3e902266e063f6d499b [file] [log] [blame]
// Copyright 2019 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 "ui/views/views_features.h"
#include "base/feature_list.h"
namespace views {
namespace features {
// Please keep alphabetized.
#if defined(OS_WIN)
// Uses aura tooltips instead of the native comctl32 tooltips on Windows.
const base::Feature kEnableAuraTooltipsOnWindows{
"EnableAuraTooltipsOnWindows", base::FEATURE_DISABLED_BY_DEFAULT};
#endif // OS_WIN
// Increases corner radius on Dialogs for the material design refresh.
// TODO(sajadm): Remove this feature flag when platform inconsistencies
// have been fixed as recorded on: https://crbug.com/932970
const base::Feature kEnableMDRoundedCornersOnDialogs{
"EnableMDRoundedCornersOnDialogs", base::FEATURE_DISABLED_BY_DEFAULT};
} // namespace features
} // namespace views