Home | History | Annotate | Download | only in power
      1 package com.android.systemui.power;
      2 
      3 import com.android.settingslib.fuelgauge.Estimate;
      4 
      5 public class EnhancedEstimatesImpl implements EnhancedEstimates {
      6 
      7     @Override
      8     public boolean isHybridNotificationEnabled() {
      9         return false;
     10     }
     11 
     12     @Override
     13     public Estimate getEstimate() {
     14         return null;
     15     }
     16 
     17     @Override
     18     public long getLowWarningThreshold() {
     19         return 0;
     20     }
     21 
     22     @Override
     23     public long getSevereWarningThreshold() {
     24         return 0;
     25     }
     26 
     27     @Override
     28     public boolean getLowWarningEnabled() {
     29         return true;
     30     }
     31 }
     32