Reorder new setZenModeWithDuration API in aidl

Previously, a new method was added to IPartnerInterface.aidl in the
middle of other methods. This needs to be added only at the end to
ensure backwards compatibility with older versions. Reorder the methods
to place setZenModeWithDuration at the end.

Change-Id: Ib9f9c7acceb928db5acc76e7351147074b230141
This commit is contained in:
Matt Garnes 2016-01-05 16:30:13 -08:00
parent be1678b867
commit a3730df179
1 changed files with 1 additions and 1 deletions

View File

@ -23,8 +23,8 @@ interface IPartnerInterface
void setAirplaneModeEnabled(boolean enabled);
void setMobileDataEnabled(boolean enabled);
boolean setZenMode(int mode);
boolean setZenModeWithDuration(int mode, long durationMillis);
void shutdown();
void reboot();
String getCurrentHotwordPackageName();
boolean setZenModeWithDuration(int mode, long durationMillis);
}