OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ash/ime/input_method_menu_item.h" | 5 #include "ash/ime/input_method_menu_item.h" |
6 #include "ash/ime/input_method_menu_manager.h" | 6 #include "ash/ime/input_method_menu_manager.h" |
7 #include "base/bind_helpers.h" | 7 #include "base/bind_helpers.h" |
8 #include "base/strings/stringprintf.h" | 8 #include "base/strings/stringprintf.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "chrome/browser/extensions/extension_browsertest.h" | 10 #include "chrome/browser/extensions/extension_browsertest.h" |
11 #include "chrome/browser/extensions/extension_test_message_listener.h" | |
12 #include "chromeos/ime/component_extension_ime_manager.h" | 11 #include "chromeos/ime/component_extension_ime_manager.h" |
13 #include "chromeos/ime/composition_text.h" | 12 #include "chromeos/ime/composition_text.h" |
14 #include "chromeos/ime/input_method_descriptor.h" | 13 #include "chromeos/ime/input_method_descriptor.h" |
15 #include "chromeos/ime/input_method_manager.h" | 14 #include "chromeos/ime/input_method_manager.h" |
16 #include "content/public/test/browser_test_utils.h" | 15 #include "content/public/test/browser_test_utils.h" |
17 #include "content/public/test/test_utils.h" | 16 #include "content/public/test/test_utils.h" |
18 #include "extensions/browser/process_manager.h" | 17 #include "extensions/browser/process_manager.h" |
19 #include "extensions/common/manifest_handlers/background_info.h" | 18 #include "extensions/common/manifest_handlers/background_info.h" |
| 19 #include "extensions/test/extension_test_message_listener.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_input_context_handler.h" | 22 #include "ui/base/ime/chromeos/mock_ime_input_context_handler.h" |
23 #include "ui/events/event.h" | 23 #include "ui/events/event.h" |
24 | 24 |
25 namespace chromeos { | 25 namespace chromeos { |
26 namespace input_method { | 26 namespace input_method { |
27 namespace { | 27 namespace { |
28 | 28 |
29 const char kIdentityIMEID[] = | 29 const char kIdentityIMEID[] = |
(...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
976 } | 976 } |
977 } | 977 } |
978 | 978 |
979 IMEBridge::Get()->SetInputContextHandler(NULL); | 979 IMEBridge::Get()->SetInputContextHandler(NULL); |
980 IMEBridge::Get()->SetCandidateWindowHandler(NULL); | 980 IMEBridge::Get()->SetCandidateWindowHandler(NULL); |
981 } | 981 } |
982 | 982 |
983 } // namespace | 983 } // namespace |
984 } // namespace input_method | 984 } // namespace input_method |
985 } // namespace chromeos | 985 } // namespace chromeos |
OLD | NEW |