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

Unified Diff: ash/ime/candidate_window_view.cc

Issue 621133002: replace OVERRIDE and FINAL with override and final in ash/ (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 | « ash/ime/candidate_window_view.h ('k') | ash/ime/infolist_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/ime/candidate_window_view.cc
diff --git a/ash/ime/candidate_window_view.cc b/ash/ime/candidate_window_view.cc
index 7cd7107dbec58261fd4a2a0abeab0966b26095c5..af71647c7630d80ed751d6b645e73a18ee37d464 100644
--- a/ash/ime/candidate_window_view.cc
+++ b/ash/ime/candidate_window_view.cc
@@ -42,7 +42,7 @@ class CandidateWindowBorder : public views::BubbleBorder {
private:
// Overridden from views::BubbleBorder:
virtual gfx::Rect GetBounds(const gfx::Rect& anchor_rect,
- const gfx::Size& content_size) const OVERRIDE {
+ const gfx::Size& content_size) const override {
gfx::Rect bounds(content_size);
bounds.set_origin(gfx::Point(
anchor_rect.x() - offset_,
@@ -62,7 +62,7 @@ class CandidateWindowBorder : public views::BubbleBorder {
return bounds;
}
- virtual gfx::Insets GetInsets() const OVERRIDE {
+ virtual gfx::Insets GetInsets() const override {
return gfx::Insets();
}
@@ -130,7 +130,7 @@ class InformationTextArea : public views::View {
}
protected:
- virtual gfx::Size GetPreferredSize() const OVERRIDE {
+ virtual gfx::Size GetPreferredSize() const override {
gfx::Size size = views::View::GetPreferredSize();
size.SetToMax(gfx::Size(min_width_, 0));
return size;
« no previous file with comments | « ash/ime/candidate_window_view.h ('k') | ash/ime/infolist_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698