OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_INPUT_METHOD_BASE_H_ | 5 #ifndef UI_BASE_IME_INPUT_METHOD_BASE_H_ |
6 #define UI_BASE_IME_INPUT_METHOD_BASE_H_ | 6 #define UI_BASE_IME_INPUT_METHOD_BASE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 | 102 |
103 // Deferred callbacks for signalling TextInputClient about candidate window | 103 // Deferred callbacks for signalling TextInputClient about candidate window |
104 // appearance changes. | 104 // appearance changes. |
105 void CandidateWindowShownCallback(); | 105 void CandidateWindowShownCallback(); |
106 void CandidateWindowUpdatedCallback(); | 106 void CandidateWindowUpdatedCallback(); |
107 void CandidateWindowHiddenCallback(); | 107 void CandidateWindowHiddenCallback(); |
108 | 108 |
109 internal::InputMethodDelegate* delegate_; | 109 internal::InputMethodDelegate* delegate_; |
110 TextInputClient* text_input_client_; | 110 TextInputClient* text_input_client_; |
111 | 111 |
112 ObserverList<InputMethodObserver> observer_list_; | 112 base::ObserverList<InputMethodObserver> observer_list_; |
113 | 113 |
114 bool system_toplevel_window_focused_; | 114 bool system_toplevel_window_focused_; |
115 | 115 |
116 DISALLOW_COPY_AND_ASSIGN(InputMethodBase); | 116 DISALLOW_COPY_AND_ASSIGN(InputMethodBase); |
117 }; | 117 }; |
118 | 118 |
119 } // namespace ui | 119 } // namespace ui |
120 | 120 |
121 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_ | 121 #endif // UI_BASE_IME_INPUT_METHOD_BASE_H_ |
OLD | NEW |