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 CHROME_BROWSER_CHROMEOS_STATUS_INPUT_METHOD_MENU_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_STATUS_INPUT_METHOD_MENU_H_ |
6 #define CHROME_BROWSER_CHROMEOS_STATUS_INPUT_METHOD_MENU_H_ | 6 #define CHROME_BROWSER_CHROMEOS_STATUS_INPUT_METHOD_MENU_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 virtual void InputMethodChanged( | 77 virtual void InputMethodChanged( |
78 input_method::InputMethodManager* manager, | 78 input_method::InputMethodManager* manager, |
79 const input_method::InputMethodDescriptor& current_input_method, | 79 const input_method::InputMethodDescriptor& current_input_method, |
80 size_t num_active_input_methods) OVERRIDE; | 80 size_t num_active_input_methods) OVERRIDE; |
81 virtual void ActiveInputMethodsChanged( | 81 virtual void ActiveInputMethodsChanged( |
82 input_method::InputMethodManager* manager, | 82 input_method::InputMethodManager* manager, |
83 const input_method::InputMethodDescriptor& current_input_method, | 83 const input_method::InputMethodDescriptor& current_input_method, |
84 size_t num_active_input_methods) OVERRIDE; | 84 size_t num_active_input_methods) OVERRIDE; |
85 virtual void PropertyListChanged( | 85 virtual void PropertyListChanged( |
86 input_method::InputMethodManager* manager, | 86 input_method::InputMethodManager* manager, |
87 const input_method::ImePropertyList& current_ime_properties) OVERRIDE; | 87 const input_method::InputMethodPropertyList& properties) OVERRIDE; |
88 | 88 |
89 // InputMethodManager::PreferenceObserver implementation. | 89 // InputMethodManager::PreferenceObserver implementation. |
90 virtual void PreferenceUpdateNeeded( | 90 virtual void PreferenceUpdateNeeded( |
91 input_method::InputMethodManager* manager, | 91 input_method::InputMethodManager* manager, |
92 const input_method::InputMethodDescriptor& previous_input_method, | 92 const input_method::InputMethodDescriptor& previous_input_method, |
93 const input_method::InputMethodDescriptor& current_input_method) OVERRIDE; | 93 const input_method::InputMethodDescriptor& current_input_method) OVERRIDE; |
94 virtual void FirstObserverIsAdded( | 94 virtual void FirstObserverIsAdded( |
95 input_method::InputMethodManager* manager) OVERRIDE; | 95 input_method::InputMethodManager* manager) OVERRIDE; |
96 | 96 |
97 // content::NotificationObserver implementation. | 97 // content::NotificationObserver implementation. |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 // true if the menu is for a dialog in OOBE screen. In the dialog, we don't | 203 // true if the menu is for a dialog in OOBE screen. In the dialog, we don't |
204 // use radio buttons. | 204 // use radio buttons. |
205 const bool for_out_of_box_experience_dialog_; | 205 const bool for_out_of_box_experience_dialog_; |
206 | 206 |
207 DISALLOW_COPY_AND_ASSIGN(InputMethodMenu); | 207 DISALLOW_COPY_AND_ASSIGN(InputMethodMenu); |
208 }; | 208 }; |
209 | 209 |
210 } // namespace chromeos | 210 } // namespace chromeos |
211 | 211 |
212 #endif // CHROME_BROWSER_CHROMEOS_STATUS_INPUT_METHOD_MENU_H_ | 212 #endif // CHROME_BROWSER_CHROMEOS_STATUS_INPUT_METHOD_MENU_H_ |
OLD | NEW |