diff options
| author | 2019-12-18 12:18:00 -0500 | |
|---|---|---|
| committer | 2020-01-03 15:21:04 -0500 | |
| commit | 9febfeb0970734321815b1d5653713a9fd9fb3ec (patch) | |
| tree | ac005b49b5f015a918a4f6398371f3d5c94afea9 /packages/SystemUI/plugin | |
| parent | fbe8eca9ed225503da536bcef32d7191d95f160f (diff) | |
Disable falsing when resting on a Dock.
Fix typo: Classifer -> Classifier.
Use Executor instead of Handler in falsing related code.
Show a dump of BrightLingFalsing related information.
Bug: 139785197
Test: atest SystemUITests && manual.
Change-Id: I3be68cb9f27ccfb5a686947cc85aae74f21f099c
Diffstat (limited to 'packages/SystemUI/plugin')
| -rw-r--r-- | packages/SystemUI/plugin/src/com/android/systemui/plugins/FalsingManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/plugin/src/com/android/systemui/plugins/FalsingManager.java b/packages/SystemUI/plugin/src/com/android/systemui/plugins/FalsingManager.java index 52ec1f0bb330..0a2dd6c027de 100644 --- a/packages/SystemUI/plugin/src/com/android/systemui/plugins/FalsingManager.java +++ b/packages/SystemUI/plugin/src/com/android/systemui/plugins/FalsingManager.java @@ -30,7 +30,7 @@ import java.io.PrintWriter; */ @ProvidesInterface(version = FalsingManager.VERSION) public interface FalsingManager { - int VERSION = 2; + int VERSION = 3; void onSucccessfulUnlock(); @@ -48,7 +48,7 @@ public interface FalsingManager { void setNotificationExpanded(); - boolean isClassiferEnabled(); + boolean isClassifierEnabled(); void onQsDown(); |