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

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

Issue 24041003: Geolocation: move polling policy to its own file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix whitespace. Created 7 years, 3 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/wifi_data_provider_common_unittest.cc
diff --git a/content/browser/geolocation/wifi_data_provider_common_unittest.cc b/content/browser/geolocation/wifi_data_provider_common_unittest.cc
index c37200faaa9f180079b3ad1a01d1986721566ecd..61e236f98a863211aa321598b16739b4825111a7 100644
--- a/content/browser/geolocation/wifi_data_provider_common_unittest.cc
+++ b/content/browser/geolocation/wifi_data_provider_common_unittest.cc
@@ -42,7 +42,7 @@ class MockWlanApi : public WifiDataProviderCommon::WlanApiInterface {
}
};
-class MockPollingPolicy : public PollingPolicyInterface {
+class MockPollingPolicy : public WifiPollingPolicy {
public:
MockPollingPolicy() {
ON_CALL(*this,PollingInterval())
@@ -87,7 +87,7 @@ class WifiDataProviderCommonWithMock : public WifiDataProviderCommon {
CHECK(new_wlan_api_ != NULL);
return new_wlan_api_.release();
}
- virtual PollingPolicyInterface* NewPollingPolicy() OVERRIDE {
+ virtual WifiPollingPolicy* NewPollingPolicy() OVERRIDE {
CHECK(new_polling_policy_ != NULL);
return new_polling_policy_.release();
}
« no previous file with comments | « content/browser/geolocation/wifi_data_provider_common.h ('k') | content/browser/geolocation/wifi_data_provider_linux.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698