summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorJinsuk Kim <jinsukkim@google.com>2014-05-22 03:19:23 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-05-22 03:19:23 +0000
commitdbbceffd9b7fc812da9a5b0a1269d43f748c37b8 (patch)
tree0e1517ae26a520f8d84ae121c86f4e2659141864 /api
parent0c88b340acb699f125e3f2f8bdacc1409138a82d (diff)
parent78d695d8ba532214b02e7f18e0ccf89cf099163d (diff)
downloadframeworks_base-dbbceffd9b7fc812da9a5b0a1269d43f748c37b8.zip
frameworks_base-dbbceffd9b7fc812da9a5b0a1269d43f748c37b8.tar.gz
frameworks_base-dbbceffd9b7fc812da9a5b0a1269d43f748c37b8.tar.bz2
Merge "Add feature actions for HDMI-CEC playback device"
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 f2240e0..4a32b83 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -12865,8 +12865,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 {