1 package com.android.systemui.power;
2 
3 import android.util.Log;
4 
5 public class EnhancedEstimatesImpl implements EnhancedEstimates {
6 
7     @Override
isHybridNotificationEnabled()8     public boolean isHybridNotificationEnabled() {
9         return false;
10     }
11 
12     @Override
getEstimate()13     public Estimate getEstimate() {
14         return null;
15     }
16 
17     @Override
getLowWarningThreshold()18     public long getLowWarningThreshold() {
19         return 0;
20     }
21 
22     @Override
getSevereWarningThreshold()23     public long getSevereWarningThreshold() {
24         return 0;
25     }
26 }
27