1da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh/*
2da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh * Copyright (C) 2013 The Android Open Source Project
3da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh *
4da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh * Licensed under the Apache License, Version 2.0 (the "License");
5da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh * you may not use this file except in compliance with the License.
6da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh * You may obtain a copy of the License at
7da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh *
8da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh *      http://www.apache.org/licenses/LICENSE-2.0
9da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh *
10da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh * Unless required by applicable law or agreed to in writing, software
11da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh * distributed under the License is distributed on an "AS IS" BASIS,
12da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh * See the License for the specific language governing permissions and
14da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh * limitations under the License.
15da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh */
16da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh
17da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganeshpackage android.hardware.location;
18da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh
19da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganeshimport android.location.Location;
20da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh
21da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh/** @hide */
22da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganeshoneway interface IGeofenceHardwareMonitorCallback {
23da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh   void onMonitoringSystemChange(int monitoringType, boolean available, in Location location);
24da6508954a492f3dd4397e70e4fa08ee54bd2741Jaikumar Ganesh}
25