15e3d0f082
This change eliminates the LocationProviderImpl class which had been used for location providers running in the system process. Now the LocationProvider base class is only used to implement the LocationManager.createProvider() method for retrieving provider information. Added a new IGpsStatusProvider interface for providers that serve GPS status. Signed-off-by: Mike Lockwood <lockwood@android.com>
30 lines
947 B
Plaintext
30 lines
947 B
Plaintext
/*
|
|
* Copyright (C) 2009 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package android.location;
|
|
|
|
import android.location.IGpsStatusListener;
|
|
|
|
/**
|
|
* An interface for location providers that provide GPS status information.
|
|
*
|
|
* {@hide}
|
|
*/
|
|
interface IGpsStatusProvider {
|
|
void addGpsStatusListener(IGpsStatusListener listener);
|
|
void removeGpsStatusListener(IGpsStatusListener listener);
|
|
}
|