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

Unified Diff: chrome/browser/ui/webui/ntp/suggestions_combiner_unittest.cc

Issue 681823004: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/ui/webui/ntp/suggestions_combiner_unittest.cc
diff --git a/chrome/browser/ui/webui/ntp/suggestions_combiner_unittest.cc b/chrome/browser/ui/webui/ntp/suggestions_combiner_unittest.cc
index 1a14aaf2e0024347e9e770ef8cc63d7402c7aa66..6e5daadab02de610c752edadd92595d77418524a 100644
--- a/chrome/browser/ui/webui/ntp/suggestions_combiner_unittest.cc
+++ b/chrome/browser/ui/webui/ntp/suggestions_combiner_unittest.cc
@@ -214,13 +214,13 @@ class SuggestionsCombinerTest : public testing::Test {
}
private:
- virtual void SetUp() {
+ void SetUp() override {
profile_ = new TestingProfile();
suggestions_handler_ = new SuggestionsHandler();
combiner_ = new SuggestionsCombiner(suggestions_handler_, profile_);
}
- virtual void TearDown() {
+ void TearDown() override {
delete combiner_;
delete suggestions_handler_;
delete profile_;

Powered by Google App Engine
This is Rietveld 408576698