Make some gesture related slices public.

Only PreferenceControllers with isPublicSlice() set to true are exposed
to other apps. Others will be Settings only.

Bug: 141088937
Test: robotests
Change-Id: I0b54e752c5982f13193590db47dc3a84dde5311d
This commit is contained in:
Yi-Ling Chuang
2019-11-27 17:14:17 +08:00
parent 617458b07c
commit 1089f7c695
14 changed files with 66 additions and 3 deletions

View File

@@ -60,6 +60,11 @@ public class DoubleTapPowerPreferenceController extends GesturePreferenceControl
return TextUtils.equals(getPreferenceKey(), "gesture_double_tap_power");
}
@Override
public boolean isPublicSlice() {
return true;
}
@Override
protected String getVideoPrefKey() {
return PREF_KEY_VIDEO;