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

Unified Diff: chrome/browser/download/download_query_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
Index: chrome/browser/download/download_query_unittest.cc
diff --git a/chrome/browser/download/download_query_unittest.cc b/chrome/browser/download/download_query_unittest.cc
index 232e4166666cf83dff2bb79c78cd503a18083846..61e68c9318eca8320d59419189317e69fb41554b 100644
--- a/chrome/browser/download/download_query_unittest.cc
+++ b/chrome/browser/download/download_query_unittest.cc
@@ -45,11 +45,9 @@ class DownloadQueryTest : public testing::Test {
public:
DownloadQueryTest() {}
- virtual ~DownloadQueryTest() {}
+ ~DownloadQueryTest() override {}
- virtual void TearDown() {
- STLDeleteElements(&mocks_);
- }
+ void TearDown() override { STLDeleteElements(&mocks_); }
void CreateMocks(int count) {
for (int i = 0; i < count; ++i) {

Powered by Google App Engine
This is Rietveld 408576698