Wayne Jackson Jr | 0d357cb | 2023-04-13 17:02:06 | [diff] [blame] | 1 | // Copyright 2023 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 "ui/android/ui_android_features.h" |
Robert Flack | ce29141 | 2023-07-21 14:46:20 | [diff] [blame^] | 6 | #include "base/feature_list.h" |
Wayne Jackson Jr | 0d357cb | 2023-04-13 17:02:06 | [diff] [blame] | 7 | |
Michael van Ouwerkerk | 99b42f4 | 2023-04-24 16:15:41 | [diff] [blame] | 8 | namespace ui { |
Wayne Jackson Jr | 0d357cb | 2023-04-13 17:02:06 | [diff] [blame] | 9 | BASE_FEATURE(kConvertTrackpadEventsToMouse, |
| 10 | "ConvertTrackpadEventsToMouse", |
| 11 | base::FEATURE_DISABLED_BY_DEFAULT); |
Finnur Thorarinsson | 118fc3f | 2023-06-05 10:54:01 | [diff] [blame] | 12 | |
| 13 | BASE_FEATURE(kDeprecatedExternalPickerFunction, |
| 14 | "DeprecatedExternalPickerFunction", |
| 15 | base::FEATURE_DISABLED_BY_DEFAULT); |
Robert Flack | ce29141 | 2023-07-21 14:46:20 | [diff] [blame^] | 16 | |
| 17 | BASE_FEATURE(kReportAllAvailablePointerTypes, |
| 18 | "ReportAllAvailablePointerTypes", |
| 19 | base::FEATURE_DISABLED_BY_DEFAULT); |
| 20 | |
Michael van Ouwerkerk | 99b42f4 | 2023-04-24 16:15:41 | [diff] [blame] | 21 | } // namespace ui |