diff options
| author | Josh Fox (XlxFoXxlX) <joshfox87@gmail.com> | 2019-04-09 19:54:50 -0400 |
|---|---|---|
| committer | Ali B <abittin@gmail.com> | 2019-04-19 17:27:31 +0300 |
| commit | 9c300598d9bc7244cf35891f08ee0bb4adf364a3 (patch) | |
| tree | e89058cf21fc6e5d6f7f2ae9ea0b62fa366c76d7 | |
| parent | fab0484086924bd6eb5818da775be0fe8582bffb (diff) | |
SmartNav: add swiftNavigationBarItems to public methods
Change-Id: I6b96ea41191d9f5b8aa3ed1fe5afbf49bd7a0517
Signed-off-by: Josh Fox (XlxFoXxlX) <joshfox87@gmail.com>
| -rw-r--r-- | src/com/android/systemui/navigation/Navigator.java | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/com/android/systemui/navigation/Navigator.java b/src/com/android/systemui/navigation/Navigator.java index 0aebb5d..24d7bed 100644 --- a/src/com/android/systemui/navigation/Navigator.java +++ b/src/com/android/systemui/navigation/Navigator.java @@ -1,7 +1,7 @@ /** * Copyright (C) 2014 The TeamEos Project * Copyright (C) 2016 The DirtyUnicorns Project - * + * * @author: Randall Rushing <randall.rushing@gmail.com> * * Licensed under the Apache License, Version 2.0 (the "License"); @@ -15,10 +15,10 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - * + * * Interface for all the things that go in that navigation window and do * amazing things. This is all the rest of the world needs to see ;D - * + * */ package com.android.systemui.navigation; @@ -78,6 +78,7 @@ public interface Navigator extends PluginListener<NavGesture> { public default void setMediaPlaying(boolean playing) {} public default void setNotificationPanelExpanded(boolean expanded) {} public default void setPulseColors(boolean colorizedMedia, int[] colors) {} + public default void swiftNavigationBarItems(int horizontalShift, int verticalShift) {} /* * Introduced in Pie |
