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

Unified Diff: components/translate/core/browser/translate_script_unittest.cc

Issue 684513002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 | « components/timers/alarm_timer.h ('k') | components/user_manager/empty_user_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/translate/core/browser/translate_script_unittest.cc
diff --git a/components/translate/core/browser/translate_script_unittest.cc b/components/translate/core/browser/translate_script_unittest.cc
index 8fb99b652b163616c11c8eb674fd2a7e30e29438..a211b68df41647a2ba48d366556409a0c5e60f8f 100644
--- a/components/translate/core/browser/translate_script_unittest.cc
+++ b/components/translate/core/browser/translate_script_unittest.cc
@@ -23,15 +23,13 @@ class TranslateScriptTest : public testing::Test {
TranslateScriptTest() : testing::Test() {}
protected:
- virtual void SetUp() {
+ void SetUp() override {
script_.reset(new TranslateScript);
DCHECK(script_.get());
TranslateDownloadManager::GetInstance()->set_application_locale("en");
}
- virtual void TearDown() {
- script_.reset();
- }
+ void TearDown() override { script_.reset(); }
void Request() {
script_->Request(
« no previous file with comments | « components/timers/alarm_timer.h ('k') | components/user_manager/empty_user_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698