Implement isScreenBrightnessBoosted in BridgePowerManager.

Change-Id: I7da132c7522e5c352e14123f059b900008d94c95
This commit is contained in:
Bryce Lee
2015-03-25 11:16:23 -07:00
parent c831b97823
commit 40a4f4a61f

View File

@@ -145,4 +145,9 @@ public class BridgePowerManager implements IPowerManager {
public void boostScreenBrightness(long time) throws RemoteException {
// pass for now.
}
@Override
public boolean isScreenBrightnessBoosted() {
return false;
}
}