Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Unified Diff: chrome/browser/net/net_log_temp_file_unittest.cc

Issue 684613002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad indent Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/net/net_error_tab_helper_unittest.cc ('k') | chrome/browser/net/network_stats_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/net_log_temp_file_unittest.cc
diff --git a/chrome/browser/net/net_log_temp_file_unittest.cc b/chrome/browser/net/net_log_temp_file_unittest.cc
index 7e8eaef9248a4b3701135d24dd283d9c0d146340..e58f63c8e67125c096b674e9ee515331fb0612b5 100644
--- a/chrome/browser/net/net_log_temp_file_unittest.cc
+++ b/chrome/browser/net/net_log_temp_file_unittest.cc
@@ -61,7 +61,7 @@ class NetLogTempFileTest : public ::testing::Test {
}
// ::testing::Test implementation:
- virtual void SetUp() override {
+ void SetUp() override {
// Get a temporary file name for unit tests.
base::FilePath net_log_dir;
ASSERT_TRUE(net_log_temp_file_->GetNetExportLogDirectory(&net_log_dir));
@@ -76,7 +76,7 @@ class NetLogTempFileTest : public ::testing::Test {
ASSERT_FALSE(net_export_log_.empty());
}
- virtual void TearDown() override {
+ void TearDown() override {
// Delete the temporary file we have created.
ASSERT_TRUE(base::DeleteFile(net_export_log_, false));
}
« no previous file with comments | « chrome/browser/net/net_error_tab_helper_unittest.cc ('k') | chrome/browser/net/network_stats_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698