Merge "Removed redundant public modifier in CommandQueue.Callbacks" into nyc-dev
This commit is contained in:
@@ -92,37 +92,37 @@ public class CommandQueue extends IStatusBar.Stub {
|
|||||||
* These methods are called back on the main thread.
|
* These methods are called back on the main thread.
|
||||||
*/
|
*/
|
||||||
public interface Callbacks {
|
public interface Callbacks {
|
||||||
public void setIcon(String slot, StatusBarIcon icon);
|
void setIcon(String slot, StatusBarIcon icon);
|
||||||
public void removeIcon(String slot);
|
void removeIcon(String slot);
|
||||||
public void disable(int state1, int state2, boolean animate);
|
void disable(int state1, int state2, boolean animate);
|
||||||
public void animateExpandNotificationsPanel();
|
void animateExpandNotificationsPanel();
|
||||||
public void animateCollapsePanels(int flags);
|
void animateCollapsePanels(int flags);
|
||||||
public void animateExpandSettingsPanel(String obj);
|
void animateExpandSettingsPanel(String obj);
|
||||||
public void setSystemUiVisibility(int vis, int fullscreenStackVis,
|
void setSystemUiVisibility(int vis, int fullscreenStackVis,
|
||||||
int dockedStackVis, int mask, Rect fullscreenStackBounds, Rect dockedStackBounds);
|
int dockedStackVis, int mask, Rect fullscreenStackBounds, Rect dockedStackBounds);
|
||||||
public void topAppWindowChanged(boolean visible);
|
void topAppWindowChanged(boolean visible);
|
||||||
public void setImeWindowStatus(IBinder token, int vis, int backDisposition,
|
void setImeWindowStatus(IBinder token, int vis, int backDisposition,
|
||||||
boolean showImeSwitcher);
|
boolean showImeSwitcher);
|
||||||
public void showRecentApps(boolean triggeredFromAltTab);
|
void showRecentApps(boolean triggeredFromAltTab);
|
||||||
public void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHomeKey);
|
void hideRecentApps(boolean triggeredFromAltTab, boolean triggeredFromHomeKey);
|
||||||
public void toggleRecentApps();
|
void toggleRecentApps();
|
||||||
public void toggleSplitScreen();
|
void toggleSplitScreen();
|
||||||
public void preloadRecentApps();
|
void preloadRecentApps();
|
||||||
public void toggleKeyboardShortcutsMenu(int deviceId);
|
void toggleKeyboardShortcutsMenu(int deviceId);
|
||||||
public void cancelPreloadRecentApps();
|
void cancelPreloadRecentApps();
|
||||||
public void setWindowState(int window, int state);
|
void setWindowState(int window, int state);
|
||||||
public void buzzBeepBlinked();
|
void buzzBeepBlinked();
|
||||||
public void notificationLightOff();
|
void notificationLightOff();
|
||||||
public void notificationLightPulse(int argb, int onMillis, int offMillis);
|
void notificationLightPulse(int argb, int onMillis, int offMillis);
|
||||||
public void showScreenPinningRequest();
|
void showScreenPinningRequest();
|
||||||
public void appTransitionPending();
|
void appTransitionPending();
|
||||||
public void appTransitionCancelled();
|
void appTransitionCancelled();
|
||||||
public void appTransitionStarting(long startTime, long duration);
|
void appTransitionStarting(long startTime, long duration);
|
||||||
public void appTransitionFinished();
|
void appTransitionFinished();
|
||||||
public void showAssistDisclosure();
|
void showAssistDisclosure();
|
||||||
public void startAssist(Bundle args);
|
void startAssist(Bundle args);
|
||||||
public void onCameraLaunchGestureDetected(int source);
|
void onCameraLaunchGestureDetected(int source);
|
||||||
public void requestTvPictureInPicture();
|
void requestTvPictureInPicture();
|
||||||
|
|
||||||
void addQsTile(ComponentName tile);
|
void addQsTile(ComponentName tile);
|
||||||
void remQsTile(ComponentName tile);
|
void remQsTile(ComponentName tile);
|
||||||
|
|||||||
Reference in New Issue
Block a user