Files
app_Settings/src/com/android/settings/bluetooth/BluetoothFeatureProviderImpl.java
Antony Sargent e4a9530cc1 Add a flag for the Bluetooth device details page
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
2017-05-24 16:37:42 -07:00

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;
}
}