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

Unified Diff: chrome/browser/chromeos/input_method/candidate_window_controller_impl.h

Issue 623293003: replace OVERRIDE and FINAL with override and final in chrome/browser/chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: run git cl format on echo_dialog_view.h 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
Index: chrome/browser/chromeos/input_method/candidate_window_controller_impl.h
diff --git a/chrome/browser/chromeos/input_method/candidate_window_controller_impl.h b/chrome/browser/chromeos/input_method/candidate_window_controller_impl.h
index 8a40b03f882c2f7ccbe9532446061fa1b6b5a41e..285b6c28bb40c0d3b9041b28dfff55cdb8c82836 100644
--- a/chrome/browser/chromeos/input_method/candidate_window_controller_impl.h
+++ b/chrome/browser/chromeos/input_method/candidate_window_controller_impl.h
@@ -47,10 +47,10 @@ class CandidateWindowControllerImpl
// CandidateWindowController overrides:
virtual void AddObserver(
- CandidateWindowController::Observer* observer) OVERRIDE;
+ CandidateWindowController::Observer* observer) override;
virtual void RemoveObserver(
- CandidateWindowController::Observer* observer) OVERRIDE;
- virtual void Hide() OVERRIDE;
+ CandidateWindowController::Observer* observer) override;
+ virtual void Hide() override;
protected:
static void ConvertLookupTableToInfolistEntry(
@@ -60,20 +60,20 @@ class CandidateWindowControllerImpl
private:
// ash::ime::CandidateWindowView::Observer implementation.
- virtual void OnCandidateCommitted(int index) OVERRIDE;
+ virtual void OnCandidateCommitted(int index) override;
// views::WidgetObserver implementation.
- virtual void OnWidgetClosing(views::Widget* widget) OVERRIDE;
+ virtual void OnWidgetClosing(views::Widget* widget) override;
// IMECandidateWindowHandlerInterface implementation.
virtual void SetCursorBounds(const gfx::Rect& cursor_bounds,
- const gfx::Rect& composition_head) OVERRIDE;
+ const gfx::Rect& composition_head) override;
virtual void UpdateLookupTable(
const ui::CandidateWindow& candidate_window,
- bool visible) OVERRIDE;
+ bool visible) override;
virtual void UpdatePreeditText(const base::string16& text,
- unsigned int cursor, bool visible) OVERRIDE;
- virtual void FocusStateChanged(bool is_focused) OVERRIDE;
+ unsigned int cursor, bool visible) override;
+ virtual void FocusStateChanged(bool is_focused) override;
void InitCandidateWindowView();

Powered by Google App Engine
This is Rietveld 408576698