Chromium Code Reviews

Unified Diff: chrome/browser/geolocation/gateway_data_provider_common_unittest.cc

Issue 3453026: Change name of PollingPolicyInterface. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Rename in unit test Created 10 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « chrome/browser/geolocation/gateway_data_provider_common.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/geolocation/gateway_data_provider_common_unittest.cc
diff --git a/chrome/browser/geolocation/gateway_data_provider_common_unittest.cc b/chrome/browser/geolocation/gateway_data_provider_common_unittest.cc
index 7aede75ac903de7157d06491f9a6305e01c0b364..1f8b072dd92a5b001ce32c1a6adec0579cb11ab0 100644
--- a/chrome/browser/geolocation/gateway_data_provider_common_unittest.cc
+++ b/chrome/browser/geolocation/gateway_data_provider_common_unittest.cc
@@ -57,7 +57,7 @@ class MessageLoopQuitListener
DeviceDataProvider<GatewayData>* provider_;
};
-class MockGatewayPollingPolicy : public PollingPolicyInterface {
+class MockGatewayPollingPolicy : public GatewayPollingPolicyInterface {
public:
MockGatewayPollingPolicy() {
ON_CALL(*this, PollingInterval())
@@ -66,7 +66,7 @@ class MockGatewayPollingPolicy : public PollingPolicyInterface {
.WillByDefault(Return(1));
}
- // PollingPolicyInterface
+ // GatewayPollingPolicyInterface
MOCK_METHOD0(PollingInterval, int());
MOCK_METHOD0(NoRouterInterval, int());
};
@@ -83,7 +83,7 @@ class GatewayDataProviderCommonWithMock : public GatewayDataProviderCommon {
CHECK(new_gateway_api_ != NULL);
return new_gateway_api_.release();
}
- virtual PollingPolicyInterface* NewPollingPolicy() {
+ virtual GatewayPollingPolicyInterface* NewPollingPolicy() {
CHECK(new_polling_policy_ != NULL);
return new_polling_policy_.release();
}
« no previous file with comments | « chrome/browser/geolocation/gateway_data_provider_common.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine