summaryrefslogtreecommitdiff
path: root/chromium/ui/views/views_features.cc
blob: 83a10c42e3c9b614379edcdfbfc952f3e033a9b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// 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"
#include "build/build_config.h"

namespace views {
namespace features {

// Please keep alphabetized.

// Increase corner radius on Dialogs for the material design refresh.
// TODO(tluk): 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};

// Use a high-contrast style for ink drops when in platform high-contrast mode,
// including full opacity and a high-contrast color
const base::Feature kEnablePlatformHighContrastInkDrop{
    "EnablePlatformHighContrastInkDrop", base::FEATURE_DISABLED_BY_DEFAULT};

// Only paint views that are invalidated/dirty (i.e. a paint was directly
// scheduled on those views) as opposed to painting all views that intersect
// an invalid rectangle on the layer.
const base::Feature kEnableViewPaintOptimization{
    "EnableViewPaintOptimization", base::FEATURE_DISABLED_BY_DEFAULT};

// Change views::Textfield to take focus on a completed tap, rather than
// immediately on tap down. This only affects touch input.
const base::Feature kTextfieldFocusOnTapUp{"TextfieldFocusOnTapUp",
                                           base::FEATURE_ENABLED_BY_DEFAULT};

// Allows a "New" badge to be displayed on menu items that provide access to new
// features.
const base::Feature kEnableNewBadgeOnMenuItems{
    "EnableNewBadgeOnMenuItems", base::FEATURE_DISABLED_BY_DEFAULT};

}  // namespace features
}  // namespace views