| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium OS 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 // The header files provides APIs for monitoring and controlling input | 5 // The header files provides APIs for monitoring and controlling input |
| 6 // method UI status. The APIs encapsulate the APIs of IBus, the underlying | 6 // method UI status. The APIs encapsulate the APIs of IBus, the underlying |
| 7 // input method framework. | 7 // input method framework. |
| 8 | 8 |
| 9 #ifndef CHROMEOS_INPUT_METHOD_UI_H_ | 9 #ifndef CHROMEOS_INPUT_METHOD_UI_H_ |
| 10 #define CHROMEOS_INPUT_METHOD_UI_H_ | 10 #define CHROMEOS_INPUT_METHOD_UI_H_ |
| (...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 InputMethodUiStatusConnection* connection); | 186 InputMethodUiStatusConnection* connection); |
| 187 | 187 |
| 188 // Set a notification function for changes to an ibus connection. | 188 // Set a notification function for changes to an ibus connection. |
| 189 extern void (*MonitorInputMethodConnection)( | 189 extern void (*MonitorInputMethodConnection)( |
| 190 InputMethodUiStatusConnection* connection, | 190 InputMethodUiStatusConnection* connection, |
| 191 InputMethodConnectionChangeMonitorFunction connection_change_handler); | 191 InputMethodConnectionChangeMonitorFunction connection_change_handler); |
| 192 | 192 |
| 193 } // namespace chromeos | 193 } // namespace chromeos |
| 194 | 194 |
| 195 #endif // CHROMEOS_INPUT_METHOD_UI_H_ | 195 #endif // CHROMEOS_INPUT_METHOD_UI_H_ |
| OLD | NEW |