| Index: content/browser/geolocation/arbitrator_dependency_factory.cc
|
| diff --git a/content/browser/geolocation/arbitrator_dependency_factory.cc b/content/browser/geolocation/arbitrator_dependency_factory.cc
|
| index 60225b60ae501034229a731dd032d32f84a1d6c1..170f6d3ee1ef1ce68cc1803a533b35dce0d2aec4 100644
|
| --- a/content/browser/geolocation/arbitrator_dependency_factory.cc
|
| +++ b/content/browser/geolocation/arbitrator_dependency_factory.cc
|
| @@ -33,8 +33,13 @@ DefaultGeolocationArbitratorDependencyFactory::NewNetworkLocationProvider(
|
| net::URLRequestContextGetter* context,
|
| const GURL& url,
|
| const string16& access_token) {
|
| +#if defined(OS_ANDROID)
|
| + // Android uses its own SystemLocationProvider.
|
| + return NULL;
|
| +#else
|
| return ::NewNetworkLocationProvider(access_token_store, context,
|
| url, access_token);
|
| +#endif
|
| }
|
|
|
| LocationProviderBase*
|
|
|