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 #include "ui/base/ime/remote_input_method_win.h" | 5 #include "ui/base/ime/remote_input_method_win.h" |
6 | 6 |
7 #include <InputScope.h> | 7 #include <InputScope.h> |
8 | 8 |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 void set_emulate_pepper_flash(bool enabled) { | 83 void set_emulate_pepper_flash(bool enabled) { |
84 emulate_pepper_flash_ = enabled; | 84 emulate_pepper_flash_ = enabled; |
85 } | 85 } |
86 | 86 |
87 private: | 87 private: |
88 // Overriden from DummyTextInputClient. | 88 // Overriden from DummyTextInputClient. |
89 virtual void SetCompositionText( | 89 virtual void SetCompositionText( |
90 const ui::CompositionText& composition) OVERRIDE { | 90 const ui::CompositionText& composition) OVERRIDE { |
91 ++call_count_set_composition_text_; | 91 ++call_count_set_composition_text_; |
92 } | 92 } |
93 virtual void InsertChar(char16 ch, int flags) OVERRIDE{ | 93 virtual void InsertChar(base::char16 ch, int flags) OVERRIDE { |
94 inserted_text_.append(1, ch); | 94 inserted_text_.append(1, ch); |
95 ++call_count_insert_char_; | 95 ++call_count_insert_char_; |
96 } | 96 } |
97 virtual void InsertText(const base::string16& text) OVERRIDE{ | 97 virtual void InsertText(const base::string16& text) OVERRIDE { |
98 inserted_text_.append(text); | 98 inserted_text_.append(text); |
99 ++call_count_insert_text_; | 99 ++call_count_insert_text_; |
100 } | 100 } |
101 virtual ui::TextInputType GetTextInputType() const OVERRIDE { | 101 virtual ui::TextInputType GetTextInputType() const OVERRIDE { |
102 return text_input_type_; | 102 return text_input_type_; |
103 } | 103 } |
104 virtual ui::TextInputMode GetTextInputMode() const OVERRIDE { | 104 virtual ui::TextInputMode GetTextInputMode() const OVERRIDE { |
105 return text_input_mode_; | 105 return text_input_mode_; |
106 } | 106 } |
107 virtual gfx::Rect GetCaretBounds() const { | 107 virtual gfx::Rect GetCaretBounds() const { |
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
842 scoped_ptr<InputMethod> input_method(CreateRemoteInputMethodWin(&delegate_)); | 842 scoped_ptr<InputMethod> input_method(CreateRemoteInputMethodWin(&delegate_)); |
843 input_method->AddObserver(&input_method_observer); | 843 input_method->AddObserver(&input_method_observer); |
844 | 844 |
845 EXPECT_EQ(0u, input_method_observer.on_input_method_destroyed_changed()); | 845 EXPECT_EQ(0u, input_method_observer.on_input_method_destroyed_changed()); |
846 input_method.reset(); | 846 input_method.reset(); |
847 EXPECT_EQ(1u, input_method_observer.on_input_method_destroyed_changed()); | 847 EXPECT_EQ(1u, input_method_observer.on_input_method_destroyed_changed()); |
848 } | 848 } |
849 | 849 |
850 } // namespace | 850 } // namespace |
851 } // namespace ui | 851 } // namespace ui |
OLD | NEW |