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

Unified Diff: ash/ime/infolist_window.cc

Issue 680153002: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix formatting 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 | « ash/ime/infolist_window.h ('k') | ash/ime/input_method_menu_manager_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/ime/infolist_window.cc
diff --git a/ash/ime/infolist_window.cc b/ash/ime/infolist_window.cc
index 3467b87370016eeb2d3b2cb438d9de0756dbdb07..dec8b7383ee1bd2fc7b0c7e4b204f21b2838293a 100644
--- a/ash/ime/infolist_window.cc
+++ b/ash/ime/infolist_window.cc
@@ -40,12 +40,12 @@ const int kInfolistHideDelayMilliSeconds = 500;
class InfolistBorder : public views::BubbleBorder {
public:
InfolistBorder();
- virtual ~InfolistBorder();
+ ~InfolistBorder() override;
// views::BubbleBorder implementation.
- virtual gfx::Rect GetBounds(const gfx::Rect& anchor_rect,
- const gfx::Size& contents_size) const override;
- virtual gfx::Insets GetInsets() const override;
+ gfx::Rect GetBounds(const gfx::Rect& anchor_rect,
+ const gfx::Size& contents_size) const override;
+ gfx::Insets GetInsets() const override;
private:
DISALLOW_COPY_AND_ASSIGN(InfolistBorder);
@@ -88,13 +88,13 @@ class InfolistEntryView : public views::View {
InfolistEntryView(const ui::InfolistEntry& entry,
const gfx::FontList& title_font_list,
const gfx::FontList& description_font_list);
- virtual ~InfolistEntryView();
+ ~InfolistEntryView() override;
void SetEntry(const ui::InfolistEntry& entry);
private:
// views::View implementation.
- virtual gfx::Size GetPreferredSize() const override;
+ gfx::Size GetPreferredSize() const override;
void UpdateBackground();
« no previous file with comments | « ash/ime/infolist_window.h ('k') | ash/ime/input_method_menu_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698