Summary: As per summary. Reviewed By: ezgicicek Differential Revision: D18530731 fbshipit-source-id: a0419aeabmaster
parent
0c4d2d7a92
commit
bbb1237e90
@ -0,0 +1,43 @@
|
||||
/*
|
||||
* Copyright (c) Facebook, Inc. and its affiliates.
|
||||
*
|
||||
* This source code is licensed under the MIT license found in the
|
||||
* LICENSE file in the root directory of this source tree.
|
||||
*/
|
||||
|
||||
import android.content.ComponentName;
|
||||
import android.content.ServiceConnection;
|
||||
import android.os.Binder;
|
||||
import android.os.IBinder;
|
||||
import android.os.RemoteException;
|
||||
|
||||
class MyServiceConnection implements ServiceConnection {
|
||||
Binder b;
|
||||
|
||||
private void bad() {
|
||||
try {
|
||||
b.transact(0, null, null, 0);
|
||||
} catch (RemoteException r) {
|
||||
}
|
||||
}
|
||||
|
||||
// implemented/overrides so no Bad suffixes
|
||||
|
||||
void onBindingDied(ComponentName name) {
|
||||
bad();
|
||||
}
|
||||
|
||||
void onNullBinding(ComponentName name) {
|
||||
bad();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onServiceConnected(ComponentName name, IBinder service) {
|
||||
bad();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onServiceDisconnected(ComponentName name) {
|
||||
bad();
|
||||
}
|
||||
}
|
Loading…
Reference in new issue