summaryrefslogtreecommitdiffstats
path: root/chromium/components/input/features.cc
blob: e40afde2644b48195af568e0b337f4266d94f6e2 (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
// Copyright 2024 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "components/input/features.h"

namespace input::features {

#if BUILDFLAG(IS_ANDROID)
BASE_FEATURE(kInputOnViz, "InputOnViz", base::FEATURE_DISABLED_BY_DEFAULT);
#endif

#if BUILDFLAG(IS_ANDROID)
BASE_FEATURE(kLogBubblingTouchscreenGesturesForDebug,
             "LogBubblingTouchscreenGesturesForDebug",
             base::FEATURE_DISABLED_BY_DEFAULT);
#else
BASE_FEATURE(kLogBubblingTouchscreenGesturesForDebug,
             "LogBubblingTouchscreenGesturesForDebug",
             base::FEATURE_ENABLED_BY_DEFAULT);
#endif

// Flag guard for fix for crbug.com/346629231.
BASE_FEATURE(kIgnoreBubblingCollisionIfSourceDevicesMismatch,
             "IgnoreBubblingCollisionIfSourceDevicesMismatch",
             base::FEATURE_ENABLED_BY_DEFAULT);

// Flag guard for fix for crbug.com/346629231.
BASE_FEATURE(kScrollBubblingFix,
             "ScrollBubblingFix",
             base::FEATURE_ENABLED_BY_DEFAULT);

}  // namespace input::features