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

Unified Diff: ui/views/controls/single_split_view_unittest.cc

Issue 623293004: replace OVERRIDE and FINAL with override and final in ui/ (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 | « ui/views/controls/single_split_view.h ('k') | ui/views/controls/slide_out_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/single_split_view_unittest.cc
diff --git a/ui/views/controls/single_split_view_unittest.cc b/ui/views/controls/single_split_view_unittest.cc
index cfea48ea4ab66691bc492073750a204f041a15e3..ca48b9a564fbd9fe45942257b1ad4d924707559e 100644
--- a/ui/views/controls/single_split_view_unittest.cc
+++ b/ui/views/controls/single_split_view_unittest.cc
@@ -45,7 +45,7 @@ class SingleSplitViewListenerImpl : public views::SingleSplitViewListener {
public:
SingleSplitViewListenerImpl() : count_(0) {}
- virtual bool SplitHandleMoved(views::SingleSplitView* sender) OVERRIDE {
+ virtual bool SplitHandleMoved(views::SingleSplitView* sender) override {
++count_;
return false;
}
@@ -64,7 +64,7 @@ class MinimumSizedView: public views::View {
private:
gfx::Size min_size_;
- virtual gfx::Size GetMinimumSize() const OVERRIDE;
+ virtual gfx::Size GetMinimumSize() const override;
};
gfx::Size MinimumSizedView::GetMinimumSize() const {
« no previous file with comments | « ui/views/controls/single_split_view.h ('k') | ui/views/controls/slide_out_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698