Chromium Code Reviews| Index: content/browser/geolocation/empty_device_data_provider.cc |
| diff --git a/content/browser/geolocation/empty_device_data_provider.cc b/content/browser/geolocation/empty_device_data_provider.cc |
| index 57e25b0a5046acbd0c5d16a4291a6a4ad567a1ce..dce5e80473e810c251a120b520df7a199a9fd7f4 100644 |
| --- a/content/browser/geolocation/empty_device_data_provider.cc |
| +++ b/content/browser/geolocation/empty_device_data_provider.cc |
| @@ -7,12 +7,11 @@ |
| namespace content { |
| // Only define for platforms that lack a real wifi data provider. |
|
joth
2013/03/03 19:43:55
this comment is orphaned without the #if below it.
Mostyn Bramley-Moore
2013/03/03 21:19:35
Done.
|
| -#if !defined(OS_WIN) && !defined(OS_MACOSX) && !defined(OS_LINUX) |
| + |
| // static |
| template<> |
| WifiDataProviderImplBase* WifiDataProvider::DefaultFactoryFunction() { |
| return new EmptyDeviceDataProvider<WifiData>(); |
| } |
| -#endif |
| } // namespace content |