forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathui_android_features.cc
64 lines (47 loc) · 2.07 KB
/
ui_android_features.cc
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright 2023 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/android/ui_android_features.h"
#include "base/feature_list.h"
namespace ui {
BASE_FEATURE(kAndroidHDR, "AndroidHDR", base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kConvertTrackpadEventsToMouse,
"ConvertTrackpadEventsToMouse",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kDeprecatedExternalPickerFunction,
"DeprecatedExternalPickerFunction",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kMirrorBackForwardGesturesInRTL,
"MirrorBackForwardGesturesInRTL",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kReportAllAvailablePointerTypes,
"ReportAllAvailablePointerTypes",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kReportBottomOverscrolls,
"ReportBottomOverscrolls",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kRequireLeadingInTextViewWithLeading,
"RequireLeadingInTextViewWithLeading",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kSelectFileOpenDocument,
"SelectFileOpenDocument",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kSendTouchMovesToEventForwarderObservers,
"SendTouchMovesToEventForwarderObservers",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kCheckIntentCallerPermission,
"CheckIntentCallerPermission",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kDisablePhotoPickerForVideoCapture,
"DisablePhotoPickerForVideoCapture",
base::FEATURE_ENABLED_BY_DEFAULT);
BASE_FEATURE(kUsingCorrectWorkArea,
"UsingCorrectWorkArea",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kUseNewEtc1Encoder,
"UseNewEtc1Encoder",
base::FEATURE_DISABLED_BY_DEFAULT);
BASE_FEATURE(kAndroidWindowOcclusion,
"AndroidWindowOcclusion",
base::FEATURE_DISABLED_BY_DEFAULT);
} // namespace ui