| Index: chrome/browser/chromeos/input_method/input_method_manager_impl.cc
|
| diff --git a/chrome/browser/chromeos/input_method/input_method_manager_impl.cc b/chrome/browser/chromeos/input_method/input_method_manager_impl.cc
|
| index c7e086cfaa8b911dbddd18d9de02587101649fed..d5a658911582c0e6a4747e4ce3281f60a6be991d 100644
|
| --- a/chrome/browser/chromeos/input_method/input_method_manager_impl.cc
|
| +++ b/chrome/browser/chromeos/input_method/input_method_manager_impl.cc
|
| @@ -407,7 +407,8 @@ bool InputMethodManagerImpl::IsXkbComponentExtensionAvailable() const {
|
| InputMethodDescriptors imes =
|
| component_extension_ime_manager_->GetAllIMEAsInputMethodDescriptor();
|
| for (size_t i = 0; i < imes.size(); ++i) {
|
| - if (StartsWithASCII(imes[i].id(), "xkb:", true))
|
| + if (StartsWithASCII(extension_ime_util::MaybeGetLegacyXkbId(
|
| + imes[i].id()), "xkb:", true))
|
| return true;
|
| }
|
| return false;
|
|
|