diff options
| author | Ali B <abittin@gmail.com> | 2022-02-02 18:14:39 +0300 |
|---|---|---|
| committer | Ali B <abittin@gmail.com> | 2022-02-06 18:44:33 +0300 |
| commit | a55cdc3f31da54d82d305c2f1a1f9b041dba200e (patch) | |
| tree | 4d0ed5398bd82f2ce498f83043ccac24dbaf161b /src/com/android | |
| parent | 8ed5cdbe2f0662c7608efbc307c047a3bc21da89 (diff) | |
Bring code inline with A12 structure.
Also, as colored notifications are removed in A12,
remove unsupported functionality.
Change-Id: Ia58960549095d2ff595ceafe48c0fd047984e64b
Diffstat (limited to 'src/com/android')
| -rw-r--r-- | src/com/android/systemui/navigation/pulse/PulseControllerImpl.java | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/com/android/systemui/navigation/pulse/PulseControllerImpl.java b/src/com/android/systemui/navigation/pulse/PulseControllerImpl.java index f3bca56..6f5f51c 100644 --- a/src/com/android/systemui/navigation/pulse/PulseControllerImpl.java +++ b/src/com/android/systemui/navigation/pulse/PulseControllerImpl.java @@ -58,10 +58,10 @@ import android.view.animation.Animation; import android.widget.FrameLayout; import com.android.systemui.Dependency; +import com.android.systemui.navigationbar.NavigationBarFrame; +import com.android.systemui.navigationbar.NavigationBarView; import com.android.systemui.statusbar.CommandQueue; import com.android.systemui.statusbar.CommandQueue.Callbacks; -import com.android.systemui.statusbar.phone.NavigationBarFrame; -import com.android.systemui.statusbar.phone.NavigationBarView; import com.android.systemui.statusbar.phone.StatusBar; import com.android.systemui.statusbar.policy.ConfigurationController; import com.android.systemui.statusbar.policy.PulseController; @@ -252,6 +252,7 @@ public class PulseControllerImpl } if (!allowNavPulse) { detachPulseFrom(nv, allowLsPulse || allowAmbPulse/*keep linked*/); + } if (!allowLsPulse && !allowAmbPulse) { detachPulseFrom(vv, allowNavPulse/*keep linked*/); @@ -568,11 +569,11 @@ public class PulseControllerImpl } } - @Override +/* @Override public void setMediaNotificationColor(boolean colorizedMedia, int color) { mColorController.setMediaNotificationColor(colorizedMedia, color); } - +*/ @Override public String toString() { return TAG + " " + getState(); |
