1ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh/*
2ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * Copyright (C) 2011, The Android Open Source Project
3ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh *
4ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * Licensed under the Apache License, Version 2.0 (the "License");
5ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * you may not use this file except in compliance with the License.
6ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * You may obtain a copy of the License at
7ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh *
8ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh *     http://www.apache.org/licenses/LICENSE-2.0
9ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh *
10ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * Unless required by applicable law or agreed to in writing, software
11ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * distributed under the License is distributed on an "AS IS" BASIS,
12ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * See the License for the specific language governing permissions and
14ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * limitations under the License.
15ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh */
16ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh
17ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganeshpackage android.bluetooth;
18ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh
19ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh/**
20ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * System private API for Bluetooth state change callback.
21ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh *
22ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh * {@hide}
23ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh */
24ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganeshinterface IBluetoothStateChangeCallback
25ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh{
26ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh    void onBluetoothStateChange(boolean on);
27ef2cb7c93a99096799d415e721dda46d1bf7a005Jaikumar Ganesh}
28