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

Side by Side Diff: ui/views/ime/mock_input_method.h

Issue 17112021: New method: InputMethod::IsCandidatePopupOpen() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed test code Created 7 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_VIEWS_IME_MOCK_INPUT_METHOD_H_ 5 #ifndef UI_VIEWS_IME_MOCK_INPUT_METHOD_H_
6 #define UI_VIEWS_IME_MOCK_INPUT_METHOD_H_ 6 #define UI_VIEWS_IME_MOCK_INPUT_METHOD_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 18 matching lines...) Expand all
29 virtual bool OnUntranslatedIMEMessage(const base::NativeEvent& event, 29 virtual bool OnUntranslatedIMEMessage(const base::NativeEvent& event,
30 NativeEventResult* result) OVERRIDE; 30 NativeEventResult* result) OVERRIDE;
31 virtual void DispatchKeyEvent(const ui::KeyEvent& key) OVERRIDE; 31 virtual void DispatchKeyEvent(const ui::KeyEvent& key) OVERRIDE;
32 virtual void OnTextInputTypeChanged(View* view) OVERRIDE; 32 virtual void OnTextInputTypeChanged(View* view) OVERRIDE;
33 virtual void OnCaretBoundsChanged(View* view) OVERRIDE; 33 virtual void OnCaretBoundsChanged(View* view) OVERRIDE;
34 virtual void CancelComposition(View* view) OVERRIDE; 34 virtual void CancelComposition(View* view) OVERRIDE;
35 virtual void OnInputLocaleChanged() OVERRIDE; 35 virtual void OnInputLocaleChanged() OVERRIDE;
36 virtual std::string GetInputLocale() OVERRIDE; 36 virtual std::string GetInputLocale() OVERRIDE;
37 virtual base::i18n::TextDirection GetInputTextDirection() OVERRIDE; 37 virtual base::i18n::TextDirection GetInputTextDirection() OVERRIDE;
38 virtual bool IsActive() OVERRIDE; 38 virtual bool IsActive() OVERRIDE;
39 virtual bool IsPopupOpen() const OVERRIDE;
39 virtual bool IsMock() const OVERRIDE; 40 virtual bool IsMock() const OVERRIDE;
40 41
41 bool focus_changed() const { return focus_changed_; } 42 bool focus_changed() const { return focus_changed_; }
42 bool untranslated_ime_message_called() const { 43 bool untranslated_ime_message_called() const {
43 return untranslated_ime_message_called_; 44 return untranslated_ime_message_called_;
44 } 45 }
45 bool text_input_type_changed() const { return text_input_type_changed_; } 46 bool text_input_type_changed() const { return text_input_type_changed_; }
46 bool caret_bounds_changed() const { return caret_bounds_changed_; } 47 bool caret_bounds_changed() const { return caret_bounds_changed_; }
47 bool cancel_composition_called() const { return cancel_composition_called_; } 48 bool cancel_composition_called() const { return cancel_composition_called_; }
48 bool input_locale_changed() const { return input_locale_changed_; } 49 bool input_locale_changed() const { return input_locale_changed_; }
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 std::string locale_; 90 std::string locale_;
90 base::i18n::TextDirection direction_; 91 base::i18n::TextDirection direction_;
91 bool active_; 92 bool active_;
92 93
93 DISALLOW_COPY_AND_ASSIGN(MockInputMethod); 94 DISALLOW_COPY_AND_ASSIGN(MockInputMethod);
94 }; 95 };
95 96
96 } // namespace views 97 } // namespace views
97 98
98 #endif // UI_VIEWS_IME_MOCK_INPUT_METHOD_H_ 99 #endif // UI_VIEWS_IME_MOCK_INPUT_METHOD_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698