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

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

Issue 474433003: Cleaner organization of WifiDataProvider code. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unit test compilation. Created 6 years, 4 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_wifi_data_provider.cc
diff --git a/content/browser/geolocation/empty_wifi_data_provider.cc b/content/browser/geolocation/empty_wifi_data_provider.cc
index d24213155d51329f49651d3bf8f5e063dac23fae..2a1f7680d891565439c4ca8d1b5f380fe8e3bf24 100644
--- a/content/browser/geolocation/empty_wifi_data_provider.cc
+++ b/content/browser/geolocation/empty_wifi_data_provider.cc
@@ -4,6 +4,8 @@
#include "content/browser/geolocation/empty_wifi_data_provider.h"
+#include "content/browser/geolocation/wifi_data_provider_manager.h"
+
namespace content {
EmptyWifiDataProvider::EmptyWifiDataProvider() {
@@ -19,7 +21,7 @@ bool EmptyWifiDataProvider::GetData(WifiData* data) {
}
// static
-WifiDataProviderImplBase* WifiDataProvider::DefaultFactoryFunction() {
+WifiDataProvider* WifiDataProviderManager::DefaultFactoryFunction() {
return new EmptyWifiDataProvider();
}

Powered by Google App Engine
This is Rietveld 408576698