summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorDongwon Kang <dwkang@google.com>2014-08-05 14:28:02 +0900
committerDongwon Kang <dwkang@google.com>2014-08-06 11:15:30 +0900
commit66b9e91801ba8867514fbcf0ef8f03a2f4fb8798 (patch)
treec457019dad1efea6252f5bc28ccefe726594a08d /api
parent3f145a2f958320766ae9240c7a57debc20d578aa (diff)
downloadframeworks_base-66b9e91801ba8867514fbcf0ef8f03a2f4fb8798.zip
frameworks_base-66b9e91801ba8867514fbcf0ef8f03a2f4fb8798.tar.gz
frameworks_base-66b9e91801ba8867514fbcf0ef8f03a2f4fb8798.tar.bz2
TIF: make TvInputService.Session class static
This change would make the developers freely extend the Session class out of the TvInputService class. Change-Id: I7dc9501c771a6e4dcfcceeb1b294b95e612596eb
Diffstat (limited to 'api')
-rw-r--r--api/current.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/api/current.txt b/api/current.txt
index ea69ebc..93bcd58 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -17065,16 +17065,16 @@ package android.media.tv {
field public static final java.lang.String SERVICE_META_DATA = "android.media.tv.input";
}
- public abstract class TvInputService.HardwareSession extends android.media.tv.TvInputService.Session {
- ctor public TvInputService.HardwareSession();
+ public static abstract class TvInputService.HardwareSession extends android.media.tv.TvInputService.Session {
+ ctor public TvInputService.HardwareSession(android.content.Context);
method public abstract java.lang.String getHardwareInputId();
method public void onHardwareVideoAvailable();
method public void onHardwareVideoUnavailable(int);
method public final boolean onSetSurface(android.view.Surface);
}
- public abstract class TvInputService.Session implements android.view.KeyEvent.Callback {
- ctor public TvInputService.Session();
+ public static abstract class TvInputService.Session implements android.view.KeyEvent.Callback {
+ ctor public TvInputService.Session(android.content.Context);
method public void notifyChannelRetuned(android.net.Uri);
method public void notifyContentAllowed();
method public void notifyContentBlocked(android.media.tv.TvContentRating);