| 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_;
|
|
|