NekoX/TMessagesProj/src/main/java/org/telegram/messenger/support/customtabs/PostMessageService.java

41 lines
1.2 KiB
Java
Executable File

/*
* This is the source code of Telegram for Android v. 5.x.x.
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Nikolai Kudashov, 2013-2018.
*/
package org.telegram.messenger.support.customtabs;
import android.app.Service;
import android.content.Intent;
import android.os.Bundle;
import android.os.IBinder;
import android.os.RemoteException;
/**
* A service to receive postMessage related communication from a Custom Tabs provider.
*/
public class PostMessageService extends Service {
private IPostMessageService.Stub mBinder = new IPostMessageService.Stub() {
@Override
public void onMessageChannelReady(
ICustomTabsCallback callback, Bundle extras) throws RemoteException {
callback.onMessageChannelReady(extras);
}
@Override
public void onPostMessage(ICustomTabsCallback callback,
String message, Bundle extras) throws RemoteException {
callback.onPostMessage(message, extras);
}
};
@Override
public IBinder onBind(Intent intent) {
return mBinder;
}
}