summaryrefslogtreecommitdiffstats
path: root/core/java/android/bluetooth/IBluetoothManagerCallback.aidl
blob: 3e795eab69e361abcbf971e461902122eaf8fb9e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright (C) 2012 Google Inc.
 */

package android.bluetooth;

import android.bluetooth.IBluetooth;

/**
 * API for Communication between BluetoothAdapter and BluetoothManager
 *
 * {@hide}
 */
interface IBluetoothManagerCallback {
    void onBluetoothServiceUp(in IBluetooth bluetoothService);
    void onBluetoothServiceDown();
}