| 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 #include "base/bind_helpers.h" | 5 #include "base/bind_helpers.h" |
| 6 #include "chrome/browser/extensions/extension_browsertest.h" | 6 #include "chrome/browser/extensions/extension_browsertest.h" |
| 7 #include "chrome/browser/extensions/extension_test_message_listener.h" | 7 #include "chrome/browser/extensions/extension_test_message_listener.h" |
| 8 #include "chrome/common/extensions/background_info.h" | |
| 9 #include "chromeos/dbus/ibus/ibus_text.h" | 8 #include "chromeos/dbus/ibus/ibus_text.h" |
| 10 #include "chromeos/ime/component_extension_ime_manager.h" | 9 #include "chromeos/ime/component_extension_ime_manager.h" |
| 11 #include "chromeos/ime/ibus_bridge.h" | 10 #include "chromeos/ime/ibus_bridge.h" |
| 12 #include "chromeos/ime/input_method_descriptor.h" | 11 #include "chromeos/ime/input_method_descriptor.h" |
| 13 #include "chromeos/ime/input_method_manager.h" | 12 #include "chromeos/ime/input_method_manager.h" |
| 14 #include "chromeos/ime/mock_ime_candidate_window_handler.h" | 13 #include "chromeos/ime/mock_ime_candidate_window_handler.h" |
| 15 #include "chromeos/ime/mock_ime_input_context_handler.h" | 14 #include "chromeos/ime/mock_ime_input_context_handler.h" |
| 16 #include "chromeos/ime/mock_ime_property_handler.h" | 15 #include "chromeos/ime/mock_ime_property_handler.h" |
| 17 #include "content/public/test/browser_test_utils.h" | 16 #include "content/public/test/browser_test_utils.h" |
| 18 #include "content/public/test/test_utils.h" | 17 #include "content/public/test/test_utils.h" |
| 18 #include "extensions/common/manifest_handlers/background_info.h" |
| 19 | 19 |
| 20 namespace chromeos { | 20 namespace chromeos { |
| 21 namespace input_method { | 21 namespace input_method { |
| 22 namespace { | 22 namespace { |
| 23 | 23 |
| 24 const char kIdentityIMEID[] = | 24 const char kIdentityIMEID[] = |
| 25 "_ext_ime_iafoklpfplgfnoimmaejoeondnjnlcfpIdentityIME"; | 25 "_ext_ime_iafoklpfplgfnoimmaejoeondnjnlcfpIdentityIME"; |
| 26 const char kToUpperIMEID[] = | 26 const char kToUpperIMEID[] = |
| 27 "_ext_ime_iafoklpfplgfnoimmaejoeondnjnlcfpToUpperIME"; | 27 "_ext_ime_iafoklpfplgfnoimmaejoeondnjnlcfpToUpperIME"; |
| 28 const char kAPIArgumentIMEID[] = | 28 const char kAPIArgumentIMEID[] = |
| (...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 } | 838 } |
| 839 | 839 |
| 840 IBusBridge::Get()->SetInputContextHandler(NULL); | 840 IBusBridge::Get()->SetInputContextHandler(NULL); |
| 841 IBusBridge::Get()->SetCandidateWindowHandler(NULL); | 841 IBusBridge::Get()->SetCandidateWindowHandler(NULL); |
| 842 IBusBridge::Get()->SetPropertyHandler(NULL); | 842 IBusBridge::Get()->SetPropertyHandler(NULL); |
| 843 } | 843 } |
| 844 | 844 |
| 845 } // namespace | 845 } // namespace |
| 846 } // namespace input_method | 846 } // namespace input_method |
| 847 } // namespace chromeos | 847 } // namespace chromeos |
| OLD | NEW |