| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_ | 5 #ifndef UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_ |
| 6 #define UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_ | 6 #define UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_ |
| 7 | 7 |
| 8 #include "ui/base/ime/chromeos/ime_bridge.h" | 8 #include "ui/base/ime/chromeos/ime_bridge.h" |
| 9 #include "ui/base/ui_base_export.h" | 9 #include "ui/base/ui_base_export.h" |
| 10 #include "ui/events/event.h" | 10 #include "ui/events/event.h" |
| 11 | 11 |
| 12 namespace chromeos { | 12 namespace chromeos { |
| 13 | 13 |
| 14 class UI_BASE_EXPORT MockIMEEngineHandler : public IMEEngineHandlerInterface { | 14 class UI_BASE_EXPORT MockIMEEngineHandler : public IMEEngineHandlerInterface { |
| 15 public: | 15 public: |
| 16 MockIMEEngineHandler(); | 16 MockIMEEngineHandler(); |
| 17 virtual ~MockIMEEngineHandler(); | 17 ~MockIMEEngineHandler() override; |
| 18 | 18 |
| 19 virtual void FocusIn(const InputContext& input_context) override; | 19 void FocusIn(const InputContext& input_context) override; |
| 20 virtual void FocusOut() override; | 20 void FocusOut() override; |
| 21 virtual void Enable(const std::string& component_id) override; | 21 void Enable(const std::string& component_id) override; |
| 22 virtual void Disable() override; | 22 void Disable() override; |
| 23 virtual void PropertyActivate(const std::string& property_name) override; | 23 void PropertyActivate(const std::string& property_name) override; |
| 24 virtual void Reset() override; | 24 void Reset() override; |
| 25 virtual void ProcessKeyEvent(const ui::KeyEvent& key_event, | 25 void ProcessKeyEvent(const ui::KeyEvent& key_event, |
| 26 const KeyEventDoneCallback& callback) override; | 26 const KeyEventDoneCallback& callback) override; |
| 27 virtual void CandidateClicked(uint32 index) override; | 27 void CandidateClicked(uint32 index) override; |
| 28 virtual void SetSurroundingText(const std::string& text, uint32 cursor_pos, | 28 void SetSurroundingText(const std::string& text, |
| 29 uint32 anchor_pos) override; | 29 uint32 cursor_pos, |
| 30 virtual void SetCompositionBounds(const gfx::Rect& bounds) override; | 30 uint32 anchor_pos) override; |
| 31 void SetCompositionBounds(const gfx::Rect& bounds) override; |
| 31 | 32 |
| 32 int focus_in_call_count() const { return focus_in_call_count_; } | 33 int focus_in_call_count() const { return focus_in_call_count_; } |
| 33 int focus_out_call_count() const { return focus_out_call_count_; } | 34 int focus_out_call_count() const { return focus_out_call_count_; } |
| 34 int reset_call_count() const { return reset_call_count_; } | 35 int reset_call_count() const { return reset_call_count_; } |
| 35 int set_surrounding_text_call_count() const { | 36 int set_surrounding_text_call_count() const { |
| 36 return set_surrounding_text_call_count_; | 37 return set_surrounding_text_call_count_; |
| 37 } | 38 } |
| 38 int process_key_event_call_count() const { | 39 int process_key_event_call_count() const { |
| 39 return process_key_event_call_count_; | 40 return process_key_event_call_count_; |
| 40 } | 41 } |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 std::string last_set_surrounding_text_; | 79 std::string last_set_surrounding_text_; |
| 79 uint32 last_set_surrounding_cursor_pos_; | 80 uint32 last_set_surrounding_cursor_pos_; |
| 80 uint32 last_set_surrounding_anchor_pos_; | 81 uint32 last_set_surrounding_anchor_pos_; |
| 81 scoped_ptr<ui::KeyEvent> last_processed_key_event_; | 82 scoped_ptr<ui::KeyEvent> last_processed_key_event_; |
| 82 KeyEventDoneCallback last_passed_callback_; | 83 KeyEventDoneCallback last_passed_callback_; |
| 83 }; | 84 }; |
| 84 | 85 |
| 85 } // namespace chromeos | 86 } // namespace chromeos |
| 86 | 87 |
| 87 #endif // UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_ | 88 #endif // UI_BASE_IME_CHROMEOS_MOCK_IME_ENGINE_HANDLER_H_ |
| OLD | NEW |