| Index: content/browser/download/download_file_unittest.cc
|
| diff --git a/content/browser/download/download_file_unittest.cc b/content/browser/download/download_file_unittest.cc
|
| index e2340fc4e7e4bef124dad443371b429eddae5407..76cdaaf643632ef85d86744d9310a98ef9a1c0f0 100644
|
| --- a/content/browser/download/download_file_unittest.cc
|
| +++ b/content/browser/download/download_file_unittest.cc
|
| @@ -88,7 +88,7 @@ class TestDownloadFileImpl : public DownloadFileImpl {
|
|
|
| protected:
|
| virtual base::TimeDelta GetRetryDelayForFailedRename(
|
| - int attempt_count) OVERRIDE {
|
| + int attempt_count) override {
|
| return base::TimeDelta::FromMilliseconds(0);
|
| }
|
|
|
| @@ -97,7 +97,7 @@ class TestDownloadFileImpl : public DownloadFileImpl {
|
| // possibly EAGAIN, which is difficult to replicate reliably. So we resort to
|
| // simulating a transient error using ACCESS_DENIED instead.
|
| virtual bool ShouldRetryFailedRename(
|
| - DownloadInterruptReason reason) OVERRIDE {
|
| + DownloadInterruptReason reason) override {
|
| return reason == DOWNLOAD_INTERRUPT_REASON_FILE_ACCESS_DENIED;
|
| }
|
| #endif
|
|
|