Make some notification 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: I6e7b9d45084ea9944143e606bfac56b2cae3e8a3
This commit is contained in:
Yi-Ling Chuang
2019-11-27 13:50:50 +08:00
parent 72af90940d
commit 3f9f068ca9
14 changed files with 70 additions and 1 deletions

View File

@@ -63,4 +63,9 @@ public class MediaVolumePreferenceControllerTest {
mContext);
assertThat(controller.isSliceable()).isTrue();
}
@Test
public void isPublicSlice_returnTrue() {
assertThat(mController.isPublicSlice()).isTrue();
}
}