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

Unified Diff: ui/base/ime/chromeos/mock_ime_engine_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_engine_handler.h
diff --git a/ui/base/ime/chromeos/mock_ime_engine_handler.h b/ui/base/ime/chromeos/mock_ime_engine_handler.h
index 1c73760bce648f8ee687d9c9bcf96dcf11a6ba96..8464939f8b439cfe6310cd91bd1b7f99a1fb9703 100644
--- a/ui/base/ime/chromeos/mock_ime_engine_handler.h
+++ b/ui/base/ime/chromeos/mock_ime_engine_handler.h
@@ -14,20 +14,21 @@ namespace chromeos {
class UI_BASE_EXPORT MockIMEEngineHandler : public IMEEngineHandlerInterface {
public:
MockIMEEngineHandler();
- virtual ~MockIMEEngineHandler();
-
- virtual void FocusIn(const InputContext& input_context) override;
- virtual void FocusOut() override;
- virtual void Enable(const std::string& component_id) override;
- virtual void Disable() override;
- virtual void PropertyActivate(const std::string& property_name) override;
- virtual void Reset() override;
- virtual void ProcessKeyEvent(const ui::KeyEvent& key_event,
- const KeyEventDoneCallback& callback) override;
- virtual void CandidateClicked(uint32 index) override;
- virtual void SetSurroundingText(const std::string& text, uint32 cursor_pos,
- uint32 anchor_pos) override;
- virtual void SetCompositionBounds(const gfx::Rect& bounds) override;
+ ~MockIMEEngineHandler() override;
+
+ void FocusIn(const InputContext& input_context) override;
+ void FocusOut() override;
+ void Enable(const std::string& component_id) override;
+ void Disable() override;
+ void PropertyActivate(const std::string& property_name) override;
+ void Reset() override;
+ void ProcessKeyEvent(const ui::KeyEvent& key_event,
+ const KeyEventDoneCallback& callback) override;
+ void CandidateClicked(uint32 index) override;
+ void SetSurroundingText(const std::string& text,
+ uint32 cursor_pos,
+ uint32 anchor_pos) override;
+ void SetCompositionBounds(const gfx::Rect& bounds) override;
int focus_in_call_count() const { return focus_in_call_count_; }
int focus_out_call_count() const { return focus_out_call_count_; }
« no previous file with comments | « ui/base/ime/chromeos/mock_ime_candidate_window_handler.h ('k') | ui/base/ime/chromeos/mock_ime_input_context_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698