| Index: content/browser/geolocation/location_arbitrator_impl.cc
|
| diff --git a/content/browser/geolocation/location_arbitrator_impl.cc b/content/browser/geolocation/location_arbitrator_impl.cc
|
| index 45bdfdb88f861fc80a7e2a0f32d3f1ce7b02e401..49c1c10b85e6290ccec2fd6e2e2770ed064f2976 100644
|
| --- a/content/browser/geolocation/location_arbitrator_impl.cc
|
| +++ b/content/browser/geolocation/location_arbitrator_impl.cc
|
| @@ -160,7 +160,11 @@ LocationProvider* GeolocationArbitratorImpl::NewNetworkLocationProvider(
|
| }
|
|
|
| LocationProvider* GeolocationArbitratorImpl::NewSystemLocationProvider() {
|
| +#if defined(OS_WIN)
|
| + return NULL;
|
| +#else
|
| return content::NewSystemLocationProvider();
|
| +#endif
|
| }
|
|
|
| base::Time GeolocationArbitratorImpl::GetTimeNow() const {
|
|
|