Add feature provider for Bluetooth

Also add method to check whether pairing page is enabled.

Bug: 38134564
Test: RunSettingsGoogleRoboTests
Change-Id: Ib74ece46f9624242895a366eac889957924f84c6
This commit is contained in:
jackqdyulei
2017-05-08 15:29:14 -07:00
parent 910f69c62a
commit 3db59a8430
5 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
package com.android.settings.bluetooth;
/**
* Impl for bluetooth feature provider
*/
public class BluetoothFeatureProviderImpl implements BluetoothFeatureProvider {
@Override
public boolean isPairingPageEnabled() {
return false;
}
}