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

Unified Diff: ui/base/ime/chromeos/mock_ime_candidate_window_handler.h

Issue 853073002: Update {virtual,override,final} to follow C++11 style in ui. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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: ui/base/ime/chromeos/mock_ime_candidate_window_handler.h
diff --git a/ui/base/ime/chromeos/mock_ime_candidate_window_handler.h b/ui/base/ime/chromeos/mock_ime_candidate_window_handler.h
index 9bac92ccc086ddcb49f086c4d7ad51dbc7abfb40..2393eb3fc8b9b7c2da1665fadfbd00dda28531a5 100644
--- a/ui/base/ime/chromeos/mock_ime_candidate_window_handler.h
+++ b/ui/base/ime/chromeos/mock_ime_candidate_window_handler.h
@@ -25,16 +25,16 @@ class UI_BASE_EXPORT MockIMECandidateWindowHandler
};
MockIMECandidateWindowHandler();
- virtual ~MockIMECandidateWindowHandler();
+ ~MockIMECandidateWindowHandler() override;
// IMECandidateWindowHandlerInterface override.
- virtual void UpdateLookupTable(
- const ui::CandidateWindow& candidate_window,
- bool visible) override;
- virtual void UpdatePreeditText(
- const base::string16& text, uint32 cursor_pos, bool visible) override;
- virtual void SetCursorBounds(const gfx::Rect& cursor_bounds,
- const gfx::Rect& composition_head) override;
+ void UpdateLookupTable(const ui::CandidateWindow& candidate_window,
+ bool visible) override;
+ void UpdatePreeditText(const base::string16& text,
+ uint32 cursor_pos,
+ bool visible) override;
+ void SetCursorBounds(const gfx::Rect& cursor_bounds,
+ const gfx::Rect& composition_head) override;
int set_cursor_bounds_call_count() const {
return set_cursor_bounds_call_count_;
« no previous file with comments | « ui/base/ime/chromeos/mock_component_extension_ime_manager_delegate.h ('k') | ui/base/ime/chromeos/mock_ime_engine_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698