| 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 #include "chromeos_input_method_ui.h" | 5 #include "chromeos_input_method_ui.h" |
| 6 | 6 |
| 7 #include <base/logging.h> | 7 #include <base/logging.h> |
| 8 #include <base/string_util.h> | 8 #include <base/string_util.h> |
| 9 #include <base/utf_string_conversions.h> | 9 #include <base/utf_string_conversions.h> |
| 10 #include <ibus.h> | 10 #include <ibus.h> |
| (...skipping 614 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 625 InputMethodUiStatusConnection* connection, | 625 InputMethodUiStatusConnection* connection, |
| 626 InputMethodConnectionChangeMonitorFunction connection_change_handler) { | 626 InputMethodConnectionChangeMonitorFunction connection_change_handler) { |
| 627 DLOG(INFO) << "MonitorInputMethodConnection"; | 627 DLOG(INFO) << "MonitorInputMethodConnection"; |
| 628 DCHECK(connection); | 628 DCHECK(connection); |
| 629 if (connection) { | 629 if (connection) { |
| 630 connection->MonitorInputMethodConnection(connection_change_handler); | 630 connection->MonitorInputMethodConnection(connection_change_handler); |
| 631 } | 631 } |
| 632 } | 632 } |
| 633 | 633 |
| 634 } // namespace chromeos | 634 } // namespace chromeos |
| OLD | NEW |