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