summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorJinsuk Kim <jinsukkim@google.com>2014-05-13 16:36:15 +0900
committerJinsuk Kim <jinsukkim@google.com>2014-05-22 11:15:51 +0900
commit78d695d8ba532214b02e7f18e0ccf89cf099163d (patch)
treec9d0b207e995dad311af7d270a881358ddda6891 /api
parente1a2e26a03e76279c9b03bdd81f92df70f8707e7 (diff)
downloadframeworks_base-78d695d8ba532214b02e7f18e0ccf89cf099163d.zip
frameworks_base-78d695d8ba532214b02e7f18e0ccf89cf099163d.tar.gz
frameworks_base-78d695d8ba532214b02e7f18e0ccf89cf099163d.tar.bz2
Add feature actions for HDMI-CEC playback device
- OneTouchPlayAction - DevicePowerStatusAction - addHotplugEventListener - removeHotplugEventListener Change-Id: Ia7f31507ca62127efbacbbfe07ab43ba1f9bd4cf
Diffstat (limited to 'api')
-rw-r--r--api/current.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt
index def0755..b097e1c 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -12837,8 +12837,23 @@ package android.hardware.hdmi {
}
public final class HdmiControlManager {
+ method public void addHotplugEventListener(android.hardware.hdmi.HdmiControlManager.HotplugEventListener);
method public android.hardware.hdmi.HdmiPlaybackClient getPlaybackClient();
method public android.hardware.hdmi.HdmiTvClient getTvClient();
+ method public void removeHotplugeEventListener(android.hardware.hdmi.HdmiControlManager.HotplugEventListener);
+ }
+
+ public static abstract interface HdmiControlManager.HotplugEventListener {
+ method public abstract void onReceived(android.hardware.hdmi.HdmiHotplugEvent);
+ }
+
+ public final class HdmiHotplugEvent implements android.os.Parcelable {
+ ctor public HdmiHotplugEvent(int, boolean);
+ method public int describeContents();
+ method public int getPort();
+ method public boolean isConnected();
+ method public void writeToParcel(android.os.Parcel, int);
+ field public static final android.os.Parcelable.Creator CREATOR;
}
public final class HdmiPlaybackClient {