You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
1.3 KiB
23 lines
1.3 KiB
// Signature format: 2.0
|
|
package com.android.media.tv.remoteprovider {
|
|
|
|
public abstract class TvRemoteProvider {
|
|
ctor public TvRemoteProvider(android.content.Context);
|
|
method public void clearInputBridge(android.os.IBinder) throws java.lang.RuntimeException;
|
|
method public void closeInputBridge(android.os.IBinder) throws java.lang.RuntimeException;
|
|
method public android.os.IBinder getBinder();
|
|
method public final android.content.Context getContext();
|
|
method public void onInputBridgeConnected(android.os.IBinder);
|
|
method public void openRemoteInputBridge(android.os.IBinder, String, int, int, int) throws java.lang.RuntimeException;
|
|
method public void sendKeyDown(android.os.IBinder, int) throws java.lang.RuntimeException;
|
|
method public void sendKeyUp(android.os.IBinder, int) throws java.lang.RuntimeException;
|
|
method public void sendPointerDown(android.os.IBinder, int, int, int) throws java.lang.RuntimeException;
|
|
method public void sendPointerSync(android.os.IBinder) throws java.lang.RuntimeException;
|
|
method public void sendPointerUp(android.os.IBinder, int) throws java.lang.RuntimeException;
|
|
method public void sendTimestamp(android.os.IBinder, long) throws java.lang.RuntimeException;
|
|
field public static final String SERVICE_INTERFACE = "com.android.media.tv.remoteprovider.TvRemoteProvider";
|
|
}
|
|
|
|
}
|
|
|