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

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

Issue 624173002: replace OVERRIDE and FINAL with override and final in chrome/browser/[j-q]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master 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/predictor.h » ('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 b3fce9e6bdbb81f0bc9b87305ae709d0593ebf9c..c7d24b2945423f0de9b7cacffd05aa3ebc3b5493 100644
--- a/chrome/browser/net/net_log_temp_file_unittest.cc
+++ b/chrome/browser/net/net_log_temp_file_unittest.cc
@@ -25,13 +25,13 @@ class TestNetLogTempFile : public NetLogTempFile {
}
// NetLogTempFile implementation:
- virtual bool GetNetExportLogDirectory(base::FilePath* path) OVERRIDE {
+ virtual bool GetNetExportLogDirectory(base::FilePath* path) override {
if (lie_about_net_export_log_directory_)
return false;
return NetLogTempFile::GetNetExportLogDirectory(path);
}
- virtual bool NetExportLogExists() OVERRIDE {
+ virtual bool NetExportLogExists() override {
if (lie_about_file_existence_)
return false;
return NetLogTempFile::NetExportLogExists();
@@ -61,7 +61,7 @@ class NetLogTempFileTest : public ::testing::Test {
}
// ::testing::Test implementation:
- virtual void SetUp() OVERRIDE {
+ virtual 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 {
+ virtual 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/predictor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698