This flag will be used to control whether we use a new, separate page for Bluetooth device details, or the existing dialog. Bug: 35877479 Test: make RunSettingsGoogleRoboTests Change-Id: I2bda77493695ebe3b3bb824657a1422a68918256
18 lines
349 B
Java
18 lines
349 B
Java
package com.android.settings.bluetooth;
|
|
|
|
/**
|
|
* Impl for bluetooth feature provider
|
|
*/
|
|
public class BluetoothFeatureProviderImpl implements BluetoothFeatureProvider {
|
|
|
|
@Override
|
|
public boolean isPairingPageEnabled() {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean isDeviceDetailPageEnabled() {
|
|
return false;
|
|
}
|
|
}
|