Index: components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc |
diff --git a/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc b/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc |
index abdf5cc37a93047d09da3d357483d3c193599470..8b24594318f93dc867d0a92ec94809cb0fb02fdc 100644 |
--- a/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc |
+++ b/components/data_reduction_proxy/core/browser/data_reduction_proxy_test_utils.cc |
@@ -132,12 +132,12 @@ TestDataReductionProxyConfigServiceClient::TestTickClock::TestTickClock( |
} |
base::TimeTicks |
-TestDataReductionProxyConfigServiceClient::TestTickClock::NowTicks() const { |
+TestDataReductionProxyConfigServiceClient::TestTickClock::NowTicks() { |
return base::TimeTicks::UnixEpoch() + (time_ - base::Time::UnixEpoch()); |
} |
base::Time |
-TestDataReductionProxyConfigServiceClient::TestTickClock::Now() const { |
+TestDataReductionProxyConfigServiceClient::TestTickClock::Now() { |
return time_; |
} |
@@ -146,19 +146,6 @@ void TestDataReductionProxyConfigServiceClient::TestTickClock::SetTime( |
time_ = time; |
} |
-TestDataReductionProxyConfigServiceClient::TestBackoffEntry::TestBackoffEntry( |
- const net::BackoffEntry::Policy* const policy, |
- const TestTickClock* tick_clock) |
- : net::BackoffEntry(policy), |
- tick_clock_(tick_clock) { |
-} |
- |
-base::TimeTicks |
-TestDataReductionProxyConfigServiceClient::TestBackoffEntry::ImplGetTimeNow() |
- const { |
- return tick_clock_->NowTicks(); |
-} |
- |
MockDataReductionProxyService::MockDataReductionProxyService( |
scoped_ptr<DataReductionProxyCompressionStats> compression_stats, |
DataReductionProxySettings* settings, |