Merge "Background activity starts are now blocked by default." into qt-dev
This commit is contained in:
committed by
Android (Google) Code Review
commit
3178ea5f2d
@@ -82,10 +82,10 @@ public class AllowBackgroundActivityStartsPreferenceController
|
|||||||
|
|
||||||
private boolean isDefaultEnabled() {
|
private boolean isDefaultEnabled() {
|
||||||
// The default in the absence of user preference is settable via DeviceConfig.
|
// The default in the absence of user preference is settable via DeviceConfig.
|
||||||
// Note that the default default is enabled.
|
// Note that the default default is disabled.
|
||||||
return DeviceConfig.getBoolean(
|
return DeviceConfig.getBoolean(
|
||||||
DeviceConfig.NAMESPACE_ACTIVITY_MANAGER,
|
DeviceConfig.NAMESPACE_ACTIVITY_MANAGER,
|
||||||
KEY_DEFAULT_BACKGROUND_ACTIVITY_STARTS_ENABLED,
|
KEY_DEFAULT_BACKGROUND_ACTIVITY_STARTS_ENABLED,
|
||||||
/*defaultValue*/ true);
|
/*defaultValue*/ false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -115,7 +115,7 @@ public class AllowBackgroundActivityStartsPreferenceControllerTest {
|
|||||||
public void onDeveloperOptionsSwitchDisabled_noDefault_shouldResetPreference() {
|
public void onDeveloperOptionsSwitchDisabled_noDefault_shouldResetPreference() {
|
||||||
mController.onDeveloperOptionsSwitchDisabled();
|
mController.onDeveloperOptionsSwitchDisabled();
|
||||||
|
|
||||||
verify(mPreference).setChecked(true);
|
verify(mPreference).setChecked(false);
|
||||||
verify(mPreference).setEnabled(false);
|
verify(mPreference).setEnabled(false);
|
||||||
|
|
||||||
assertThat(getModeFroMSettings()).isEqualTo(-1);
|
assertThat(getModeFroMSettings()).isEqualTo(-1);
|
||||||
|
Reference in New Issue
Block a user