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

Unified Diff: ui/app_list/views/speech_view_unittest.cc

Issue 681873002: 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
« no previous file with comments | « ui/app_list/views/speech_view.cc ('k') | ui/app_list/views/start_page_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/views/speech_view_unittest.cc
diff --git a/ui/app_list/views/speech_view_unittest.cc b/ui/app_list/views/speech_view_unittest.cc
index ad49f0d104644a61980817eba50919cdce7b08f4..319eca66bd9ed0ab1e3abe49dde51f1975351875 100644
--- a/ui/app_list/views/speech_view_unittest.cc
+++ b/ui/app_list/views/speech_view_unittest.cc
@@ -15,10 +15,10 @@ class SpeechViewTest : public views::test::WidgetTest,
public AppListTestViewDelegate {
public:
SpeechViewTest() {}
- virtual ~SpeechViewTest() {}
+ ~SpeechViewTest() override {}
// Overridden from testing::Test:
- virtual void SetUp() override {
+ void SetUp() override {
views::test::WidgetTest::SetUp();
widget_ = CreateTopLevelPlatformWidget();
widget_->SetBounds(gfx::Rect(0, 0, 300, 200));
@@ -27,7 +27,7 @@ class SpeechViewTest : public views::test::WidgetTest,
view_->SetBoundsRect(widget_->GetContentsView()->GetLocalBounds());
}
- virtual void TearDown() override {
+ void TearDown() override {
widget_->CloseNow();
views::test::WidgetTest::TearDown();
}
« no previous file with comments | « ui/app_list/views/speech_view.cc ('k') | ui/app_list/views/start_page_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698