| 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_DUMMY_TEXT_INPUT_CLIENT_H_ | 5 #ifndef UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ |
| 6 #define UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ | 6 #define UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ |
| 7 | 7 |
| 8 #include "ui/base/ime/text_input_client.h" | 8 #include "ui/base/ime/text_input_client.h" |
| 9 | 9 |
| 10 namespace ui { | 10 namespace ui { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; | 35 virtual bool GetSelectionRange(gfx::Range* range) const OVERRIDE; |
| 36 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE; | 36 virtual bool SetSelectionRange(const gfx::Range& range) OVERRIDE; |
| 37 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE; | 37 virtual bool DeleteRange(const gfx::Range& range) OVERRIDE; |
| 38 virtual bool GetTextFromRange(const gfx::Range& range, | 38 virtual bool GetTextFromRange(const gfx::Range& range, |
| 39 string16* text) const OVERRIDE; | 39 string16* text) const OVERRIDE; |
| 40 virtual void OnInputMethodChanged() OVERRIDE; | 40 virtual void OnInputMethodChanged() OVERRIDE; |
| 41 virtual bool ChangeTextDirectionAndLayoutAlignment( | 41 virtual bool ChangeTextDirectionAndLayoutAlignment( |
| 42 base::i18n::TextDirection direction) OVERRIDE; | 42 base::i18n::TextDirection direction) OVERRIDE; |
| 43 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; | 43 virtual void ExtendSelectionAndDelete(size_t before, size_t after) OVERRIDE; |
| 44 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; | 44 virtual void EnsureCaretInRect(const gfx::Rect& rect) OVERRIDE; |
| 45 virtual void OnCandidateWindowShow() OVERRIDE; |
| 46 virtual void OnCandidateWindowUpdate() OVERRIDE; |
| 47 virtual void OnCandidateWindowHide() OVERRIDE; |
| 45 }; | 48 }; |
| 46 | 49 |
| 47 } // namespace ui | 50 } // namespace ui |
| 48 | 51 |
| 49 #endif // UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ | 52 #endif // UI_BASE_IME_DUMMY_TEXT_INPUT_CLIENT_H_ |
| OLD | NEW |