OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "ui/base/ime/input_method_chromeos.h" | 5 #include "ui/base/ime/input_method_chromeos.h" |
6 | 6 |
7 #include <X11/Xlib.h> | 7 #include <X11/Xlib.h> |
8 #undef Bool | 8 #undef Bool |
9 #undef FocusIn | 9 #undef FocusIn |
10 #undef FocusOut | 10 #undef FocusOut |
11 #undef None | 11 #undef None |
12 | 12 |
13 #include <cstring> | 13 #include <cstring> |
14 | 14 |
15 #include "base/i18n/char_iterator.h" | 15 #include "base/i18n/char_iterator.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
17 #include "base/strings/utf_string_conversions.h" | 17 #include "base/strings/utf_string_conversions.h" |
| 18 #include "chromeos/ime/composition_text.h" |
18 #include "testing/gtest/include/gtest/gtest.h" | 19 #include "testing/gtest/include/gtest/gtest.h" |
19 #include "ui/base/ime/chromeos/composition_text.h" | |
20 #include "ui/base/ime/chromeos/ime_bridge.h" | 20 #include "ui/base/ime/chromeos/ime_bridge.h" |
21 #include "ui/base/ime/chromeos/mock_ime_candidate_window_handler.h" | 21 #include "ui/base/ime/chromeos/mock_ime_candidate_window_handler.h" |
22 #include "ui/base/ime/chromeos/mock_ime_engine_handler.h" | 22 #include "ui/base/ime/chromeos/mock_ime_engine_handler.h" |
23 #include "ui/base/ime/input_method_delegate.h" | 23 #include "ui/base/ime/input_method_delegate.h" |
24 #include "ui/base/ime/text_input_client.h" | 24 #include "ui/base/ime/text_input_client.h" |
25 #include "ui/base/ime/text_input_focus_manager.h" | 25 #include "ui/base/ime/text_input_focus_manager.h" |
26 #include "ui/base/ui_base_switches_util.h" | 26 #include "ui/base/ui_base_switches_util.h" |
27 #include "ui/events/event.h" | 27 #include "ui/events/event.h" |
28 #include "ui/events/test/events_test_utils_x11.h" | 28 #include "ui/events/test/events_test_utils_x11.h" |
29 #include "ui/gfx/geometry/rect.h" | 29 #include "ui/gfx/geometry/rect.h" |
(...skipping 1035 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1065 ime_->ResetContext(); | 1065 ime_->ResetContext(); |
1066 | 1066 |
1067 // Do callback. | 1067 // Do callback. |
1068 mock_ime_engine_handler_->last_passed_callback().Run(true); | 1068 mock_ime_engine_handler_->last_passed_callback().Run(true); |
1069 | 1069 |
1070 EXPECT_EQ(0, ime_->process_key_event_post_ime_call_count()); | 1070 EXPECT_EQ(0, ime_->process_key_event_post_ime_call_count()); |
1071 } | 1071 } |
1072 // TODO(nona): Introduce ProcessKeyEventPostIME tests(crbug.com/156593). | 1072 // TODO(nona): Introduce ProcessKeyEventPostIME tests(crbug.com/156593). |
1073 | 1073 |
1074 } // namespace ui | 1074 } // namespace ui |
OLD | NEW |