Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(145)

Unified Diff: content/browser/geolocation/empty_device_data_provider.cc

Issue 12385071: Make it possible to disable dbus on linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minor fixup Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698