Chromium Code Reviews| Index: components/google/core/browser/google_url_tracker.cc |
| diff --git a/components/google/core/browser/google_url_tracker.cc b/components/google/core/browser/google_url_tracker.cc |
| index 0864f6a73dabbb00eda6c5d0adc39e35ef8dae73..a45e3a83e30f329b1b384ab2933b2f2a29a9be1a 100644 |
| --- a/components/google/core/browser/google_url_tracker.cc |
| +++ b/components/google/core/browser/google_url_tracker.cc |
| @@ -245,6 +245,8 @@ void GoogleURLTracker::StartFetchIfDesirable() { |
| // Configure to max_retries at most kMaxRetries times for 5xx errors. |
| static const int kMaxRetries = 5; |
| fetcher_->SetMaxRetriesOn5xx(kMaxRetries); |
| + // Configure to max_retries at most kMaxRetries times for network changes. |
|
pauljensen
2014/09/05 13:22:56
What is "max_retries"? would "retry" make more se
Jaekyun Seok (inactive)
2014/09/05 19:00:50
Done.
|
| + fetcher_->SetAutomaticallyRetryOnNetworkChanges(kMaxRetries); |
| fetcher_->Start(); |
| } |