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 dbf0fe38e8b114addc038bd99b9626b8ac3320a7..620efa36ff0e093859e17e4d23f34c19a673ca2c 100644 |
--- a/content/browser/download/download_file_unittest.cc |
+++ b/content/browser/download/download_file_unittest.cc |
@@ -125,8 +125,7 @@ class DownloadFileTest : public testing::Test { |
file_thread_(BrowserThread::FILE, &loop_) { |
} |
- virtual ~DownloadFileTest() { |
- } |
+ ~DownloadFileTest() override {} |
void SetUpdateDownloadInfo(int64 bytes, int64 bytes_per_sec, |
const std::string& hash_state) { |
@@ -139,7 +138,7 @@ class DownloadFileTest : public testing::Test { |
observer_->CurrentUpdateStatus(bytes_, bytes_per_sec_, hash_state_); |
} |
- virtual void SetUp() { |
+ void SetUp() override { |
EXPECT_CALL(*(observer_.get()), DestinationUpdate(_, _, _)) |
.Times(AnyNumber()) |
.WillRepeatedly(Invoke(this, &DownloadFileTest::SetUpdateDownloadInfo)); |