1// Signature format: 2.0
2package com.android.media.tv.remoteprovider {
3
4  public abstract class TvRemoteProvider {
5    ctor public TvRemoteProvider(android.content.Context);
6    method public void clearInputBridge(android.os.IBinder) throws java.lang.RuntimeException;
7    method public void closeInputBridge(android.os.IBinder) throws java.lang.RuntimeException;
8    method public android.os.IBinder getBinder();
9    method public final android.content.Context getContext();
10    method public void onInputBridgeConnected(android.os.IBinder);
11    method public void openRemoteInputBridge(android.os.IBinder, String, int, int, int) throws java.lang.RuntimeException;
12    method public void sendKeyDown(android.os.IBinder, int) throws java.lang.RuntimeException;
13    method public void sendKeyUp(android.os.IBinder, int) throws java.lang.RuntimeException;
14    method public void sendPointerDown(android.os.IBinder, int, int, int) throws java.lang.RuntimeException;
15    method public void sendPointerSync(android.os.IBinder) throws java.lang.RuntimeException;
16    method public void sendPointerUp(android.os.IBinder, int) throws java.lang.RuntimeException;
17    method public void sendTimestamp(android.os.IBinder, long) throws java.lang.RuntimeException;
18    field public static final String SERVICE_INTERFACE = "com.android.media.tv.remoteprovider.TvRemoteProvider";
19  }
20
21}
22
23