1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/ui/webui/chromeos/login/l10n_util.h"
#include <algorithm>
#include <iterator>
#include <map>
#include <set>
#include <utility>
#include "base/basictypes.h"
#include "base/bind.h"
#include "base/i18n/rtl.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/memory/ref_counted.h"
#include "base/sequenced_task_runner.h"
#include "base/strings/string16.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task_runner_util.h"
#include "base/threading/sequenced_worker_pool.h"
#include "base/values.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chromeos/customization/customization_document.h"
#include "chrome/browser/chromeos/input_method/input_method_util.h"
#include "chrome/browser/chromeos/profiles/profile_helper.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "chrome/grit/generated_resources.h"
#include "content/public/browser/browser_thread.h"
#include "ui/base/ime/chromeos/component_extension_ime_manager.h"
#include "ui/base/ime/chromeos/input_method_descriptor.h"
#include "ui/base/ime/chromeos/input_method_manager.h"
#include "ui/base/l10n/l10n_util.h"
namespace chromeos {
const char kMostRelevantLanguagesDivider[] = "MOST_RELEVANT_LANGUAGES_DIVIDER";
namespace {
const char kSequenceToken[] = "chromeos_login_l10n_util";
scoped_ptr<base::DictionaryValue> CreateInputMethodsEntry(
const input_method::InputMethodDescriptor& method,
const std::string selected) {
input_method::InputMethodUtil* util =
input_method::InputMethodManager::Get()->GetInputMethodUtil();
const std::string& ime_id = method.id();
scoped_ptr<base::DictionaryValue> input_method(new base::DictionaryValue);
input_method->SetString("value", ime_id);
input_method->SetString(
"title", util->GetInputMethodLongNameStripped(method));
input_method->SetBoolean("selected", ime_id == selected);
return input_method.Pass();
}
// Returns true if element was inserted.
bool InsertString(const std::string& str, std::set<std::string>* to) {
const std::pair<std::set<std::string>::iterator, bool> result =
to->insert(str);
return result.second;
}
#if !defined(USE_ATHENA)
// TODO(dpolukhin): crbug.com/407579
void AddOptgroupOtherLayouts(base::ListValue* input_methods_list) {
scoped_ptr<base::DictionaryValue> optgroup(new base::DictionaryValue);
optgroup->SetString(
"optionGroupName",
l10n_util::GetStringUTF16(IDS_OOBE_OTHER_KEYBOARD_LAYOUTS));
input_methods_list->Append(optgroup.release());
}
#endif
base::DictionaryValue* CreateLanguageEntry(
const std::string& language_code,
const base::string16& language_display_name,
const base::string16& language_native_display_name) {
base::string16 display_name = language_display_name;
const bool markup_removal =
base::i18n::UnadjustStringForLocaleDirection(&display_name);
DCHECK(markup_removal);
const bool has_rtl_chars =
base::i18n::StringContainsStrongRTLChars(display_name);
const std::string directionality = has_rtl_chars ? "rtl" : "ltr";
scoped_ptr<base::DictionaryValue> dictionary(new base::DictionaryValue());
dictionary->SetString("code", language_code);
dictionary->SetString("displayName", language_display_name);
dictionary->SetString("textDirection", directionality);
dictionary->SetString("nativeDisplayName", language_native_display_name);
return dictionary.release();
}
// Gets the list of languages with |descriptors| based on |base_language_codes|.
// The |most_relevant_language_codes| will be first in the list. If
// |insert_divider| is true, an entry with its "code" attribute set to
// kMostRelevantLanguagesDivider is placed between the most relevant languages
// and all others.
scoped_ptr<base::ListValue> GetLanguageList(
const input_method::InputMethodDescriptors& descriptors,
const std::vector<std::string>& base_language_codes,
const std::vector<std::string>& most_relevant_language_codes,
bool insert_divider) {
const std::string app_locale = g_browser_process->GetApplicationLocale();
std::set<std::string> language_codes;
// Collect the language codes from the supported input methods.
for (size_t i = 0; i < descriptors.size(); ++i) {
const input_method::InputMethodDescriptor& descriptor = descriptors[i];
const std::vector<std::string>& languages = descriptor.language_codes();
for (size_t i = 0; i < languages.size(); ++i)
language_codes.insert(languages[i]);
}
// Language sort order.
std::map<std::string, int /* index */> language_index;
for (size_t i = 0; i < most_relevant_language_codes.size(); ++i)
language_index[most_relevant_language_codes[i]] = i;
// Map of display name -> {language code, native_display_name}.
// In theory, we should be able to create a map that is sorted by
// display names using ICU comparator, but doing it is hard, thus we'll
// use an auxiliary vector to achieve the same result.
typedef std::pair<std::string, base::string16> LanguagePair;
typedef std::map<base::string16, LanguagePair> LanguageMap;
LanguageMap language_map;
// The auxiliary vector mentioned above (except the most relevant locales).
std::vector<base::string16> display_names;
// Separate vector of the most relevant locales.
std::vector<base::string16> most_relevant_locales_display_names(
most_relevant_language_codes.size());
size_t most_relevant_locales_count = 0;
// Build the list of display names, and build the language map.
// The list of configured locales might have entries not in
// base_language_codes. If there are unsupported language variants,
// but they resolve to backup locale within base_language_codes, also
// add them to the list.
for (std::map<std::string, int>::const_iterator it = language_index.begin();
it != language_index.end(); ++it) {
const std::string& language_id = it->first;
const std::string lang = l10n_util::GetLanguage(language_id);
// Ignore non-specific codes.
if (lang.empty() || lang == language_id)
continue;
if (std::find(base_language_codes.begin(),
base_language_codes.end(),
language_id) != base_language_codes.end()) {
// Language is supported. No need to replace
continue;
}
std::string resolved_locale;
if (!l10n_util::CheckAndResolveLocale(language_id, &resolved_locale))
continue;
if (std::find(base_language_codes.begin(),
base_language_codes.end(),
resolved_locale) == base_language_codes.end()) {
// Resolved locale is not supported.
continue;
}
const base::string16 display_name =
l10n_util::GetDisplayNameForLocale(language_id, app_locale, true);
const base::string16 native_display_name =
l10n_util::GetDisplayNameForLocale(
language_id, language_id, true);
language_map[display_name] =
std::make_pair(language_id, native_display_name);
most_relevant_locales_display_names[it->second] = display_name;
++most_relevant_locales_count;
}
// Translate language codes, generated from input methods.
for (std::set<std::string>::const_iterator it = language_codes.begin();
it != language_codes.end(); ++it) {
// Exclude the language which is not in |base_langauge_codes| even it has
// input methods.
if (std::find(base_language_codes.begin(),
base_language_codes.end(),
*it) == base_language_codes.end()) {
continue;
}
const base::string16 display_name =
l10n_util::GetDisplayNameForLocale(*it, app_locale, true);
const base::string16 native_display_name =
l10n_util::GetDisplayNameForLocale(*it, *it, true);
language_map[display_name] =
std::make_pair(*it, native_display_name);
const std::map<std::string, int>::const_iterator index_pos =
language_index.find(*it);
if (index_pos != language_index.end()) {
base::string16& stored_display_name =
most_relevant_locales_display_names[index_pos->second];
if (stored_display_name.empty()) {
stored_display_name = display_name;
++most_relevant_locales_count;
}
} else {
display_names.push_back(display_name);
}
}
DCHECK_EQ(display_names.size() + most_relevant_locales_count,
language_map.size());
// Build the list of display names, and build the language map.
for (size_t i = 0; i < base_language_codes.size(); ++i) {
// Skip this language if it was already added.
if (language_codes.find(base_language_codes[i]) != language_codes.end())
continue;
base::string16 display_name =
l10n_util::GetDisplayNameForLocale(
base_language_codes[i], app_locale, false);
base::string16 native_display_name =
l10n_util::GetDisplayNameForLocale(
base_language_codes[i], base_language_codes[i], false);
language_map[display_name] =
std::make_pair(base_language_codes[i], native_display_name);
const std::map<std::string, int>::const_iterator index_pos =
language_index.find(base_language_codes[i]);
if (index_pos != language_index.end()) {
most_relevant_locales_display_names[index_pos->second] = display_name;
++most_relevant_locales_count;
} else {
display_names.push_back(display_name);
}
}
// Sort display names using locale specific sorter.
l10n_util::SortStrings16(app_locale, &display_names);
// Concatenate most_relevant_locales_display_names and display_names.
// Insert special divider in between.
std::vector<base::string16> out_display_names;
for (size_t i = 0; i < most_relevant_locales_display_names.size(); ++i) {
if (most_relevant_locales_display_names[i].size() == 0)
continue;
out_display_names.push_back(most_relevant_locales_display_names[i]);
}
base::string16 divider16;
if (insert_divider && !out_display_names.empty()) {
// Insert a divider if requested, but only if
// |most_relevant_locales_display_names| is not empty.
divider16 = base::ASCIIToUTF16(kMostRelevantLanguagesDivider);
out_display_names.push_back(divider16);
}
std::copy(display_names.begin(),
display_names.end(),
std::back_inserter(out_display_names));
// Build the language list from the language map.
scoped_ptr<base::ListValue> language_list(new base::ListValue());
for (size_t i = 0; i < out_display_names.size(); ++i) {
// Sets the directionality of the display language name.
base::string16 display_name(out_display_names[i]);
if (insert_divider && display_name == divider16) {
// Insert divider.
base::DictionaryValue* dictionary = new base::DictionaryValue();
dictionary->SetString("code", kMostRelevantLanguagesDivider);
language_list->Append(dictionary);
continue;
}
const LanguagePair& pair = language_map[out_display_names[i]];
language_list->Append(
CreateLanguageEntry(pair.first, out_display_names[i], pair.second));
}
return language_list.Pass();
}
// Invokes |callback| with a list of keyboard layouts that can be used for
// |resolved_locale|.
void GetKeyboardLayoutsForResolvedLocale(
const GetKeyboardLayoutsForLocaleCallback& callback,
const std::string& resolved_locale) {
input_method::InputMethodUtil* util =
input_method::InputMethodManager::Get()->GetInputMethodUtil();
std::vector<std::string> layouts = util->GetHardwareInputMethodIds();
std::vector<std::string> layouts_from_locale;
util->GetInputMethodIdsFromLanguageCode(
resolved_locale,
input_method::kKeyboardLayoutsOnly,
&layouts_from_locale);
layouts.insert(layouts.end(), layouts_from_locale.begin(),
layouts_from_locale.end());
std::string selected;
if (!layouts_from_locale.empty()) {
selected =
util->GetInputMethodDescriptorFromId(layouts_from_locale[0])->id();
}
scoped_ptr<base::ListValue> input_methods_list(new base::ListValue);
std::set<std::string> input_methods_added;
for (std::vector<std::string>::const_iterator it = layouts.begin();
it != layouts.end(); ++it) {
const input_method::InputMethodDescriptor* ime =
util->GetInputMethodDescriptorFromId(*it);
if (!InsertString(ime->id(), &input_methods_added))
continue;
input_methods_list->Append(
CreateInputMethodsEntry(*ime, selected).release());
}
callback.Run(input_methods_list.Pass());
}
// For "UI Language" drop-down menu at OOBE screen we need to decide which
// entry to mark "selected". If user has just selected "requested_locale",
// but "loaded_locale" was actually loaded, we mark original user choice
// "selected" only if loaded_locale is a backup for "requested_locale".
std::string CalculateSelectedLanguage(const std::string& requested_locale,
const std::string& loaded_locale) {
std::string resolved_locale;
if (!l10n_util::CheckAndResolveLocale(requested_locale, &resolved_locale))
return loaded_locale;
if (resolved_locale == loaded_locale)
return requested_locale;
return loaded_locale;
}
void ResolveLanguageListOnBlockingPool(
const chromeos::locale_util::LanguageSwitchResult* language_switch_result,
scoped_ptr<base::ListValue>* list,
std::string* list_locale,
std::string* selected_language) {
DCHECK(content::BrowserThread::GetBlockingPool()->RunsTasksOnCurrentThread());
if (!language_switch_result) {
*selected_language =
StartupCustomizationDocument::GetInstance()->initial_locale_default();
} else {
if (language_switch_result->success) {
if (language_switch_result->requested_locale ==
language_switch_result->loaded_locale) {
*selected_language = language_switch_result->requested_locale;
} else {
*selected_language =
CalculateSelectedLanguage(language_switch_result->requested_locale,
language_switch_result->loaded_locale);
}
} else {
*selected_language = language_switch_result->loaded_locale;
}
}
const std::string selected_code =
selected_language->empty() ? g_browser_process->GetApplicationLocale()
: *selected_language;
*list_locale = language_switch_result
? language_switch_result->loaded_locale
: g_browser_process->GetApplicationLocale();
list->reset(chromeos::GetUILanguageList(NULL, selected_code).release());
}
void OnLanguageListResolved(
UILanguageListResolvedCallback callback,
scoped_ptr<scoped_ptr<base::ListValue>> new_language_list,
scoped_ptr<std::string> new_language_list_locale,
scoped_ptr<std::string> new_selected_language) {
callback.Run(new_language_list->Pass(),
*new_language_list_locale,
*new_selected_language);
}
void AdjustUILanguageList(const std::string& selected,
base::ListValue* languages_list) {
for (size_t i = 0; i < languages_list->GetSize(); ++i) {
base::DictionaryValue* language_info = NULL;
if (!languages_list->GetDictionary(i, &language_info))
NOTREACHED();
std::string value;
language_info->GetString("code", &value);
std::string display_name;
language_info->GetString("displayName", &display_name);
std::string native_name;
language_info->GetString("nativeDisplayName", &native_name);
// If it's an option group divider, add field name.
if (value == kMostRelevantLanguagesDivider) {
language_info->SetString(
"optionGroupName",
l10n_util::GetStringUTF16(IDS_OOBE_OTHER_LANGUAGES));
}
if (display_name != native_name) {
display_name = base::StringPrintf("%s - %s",
display_name.c_str(),
native_name.c_str());
}
language_info->SetString("value", value);
language_info->SetString("title", display_name);
if (value == selected)
language_info->SetBoolean("selected", true);
}
}
} // namespace
void ResolveUILanguageList(
scoped_ptr<chromeos::locale_util::LanguageSwitchResult>
language_switch_result,
UILanguageListResolvedCallback callback) {
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI));
scoped_ptr<scoped_ptr<base::ListValue>> new_language_list(
new scoped_ptr<base::ListValue>());
scoped_ptr<std::string> new_language_list_locale(new std::string);
scoped_ptr<std::string> new_selected_language(new std::string);
base::Closure resolve_on_pool =
base::Bind(&ResolveLanguageListOnBlockingPool,
base::Owned(language_switch_result.release()),
base::Unretained(new_language_list.get()),
base::Unretained(new_language_list_locale.get()),
base::Unretained(new_selected_language.get()));
base::Closure on_language_list_resolved =
base::Bind(&OnLanguageListResolved,
callback,
base::Passed(new_language_list.Pass()),
base::Passed(new_language_list_locale.Pass()),
base::Passed(new_selected_language.Pass()));
content::BrowserThread::GetBlockingPool()->PostTaskAndReply(
FROM_HERE, resolve_on_pool, on_language_list_resolved);
}
scoped_ptr<base::ListValue> GetMinimalUILanguageList() {
const std::string application_locale =
g_browser_process->GetApplicationLocale();
base::string16 language_native_display_name =
l10n_util::GetDisplayNameForLocale(
application_locale, application_locale, true);
scoped_ptr<base::ListValue> language_list(new base::ListValue());
language_list->Append(CreateLanguageEntry(application_locale,
language_native_display_name,
language_native_display_name));
AdjustUILanguageList(std::string(), language_list.get());
return language_list.Pass();
}
scoped_ptr<base::ListValue> GetUILanguageList(
const std::vector<std::string>* most_relevant_language_codes,
const std::string& selected) {
ComponentExtensionIMEManager* manager =
input_method::InputMethodManager::Get()
->GetComponentExtensionIMEManager();
input_method::InputMethodDescriptors descriptors =
manager->GetXkbIMEAsInputMethodDescriptor();
scoped_ptr<base::ListValue> languages_list(GetLanguageList(
descriptors,
l10n_util::GetAvailableLocales(),
most_relevant_language_codes
? *most_relevant_language_codes
: StartupCustomizationDocument::GetInstance()->configured_locales(),
true));
AdjustUILanguageList(selected, languages_list.get());
return languages_list.Pass();
}
std::string FindMostRelevantLocale(
const std::vector<std::string>& most_relevant_language_codes,
const base::ListValue& available_locales,
const std::string& fallback_locale) {
for (std::vector<std::string>::const_iterator most_relevant_it =
most_relevant_language_codes.begin();
most_relevant_it != most_relevant_language_codes.end();
++most_relevant_it) {
for (base::ListValue::const_iterator available_it =
available_locales.begin();
available_it != available_locales.end(); ++available_it) {
base::DictionaryValue* dict;
std::string available_locale;
if (!(*available_it)->GetAsDictionary(&dict) ||
!dict->GetString("value", &available_locale)) {
NOTREACHED();
continue;
}
if (available_locale == *most_relevant_it)
return *most_relevant_it;
}
}
return fallback_locale;
}
scoped_ptr<base::ListValue> GetAcceptLanguageList() {
// Collect the language codes from the supported accept-languages.
const std::string app_locale = g_browser_process->GetApplicationLocale();
std::vector<std::string> accept_language_codes;
l10n_util::GetAcceptLanguagesForLocale(app_locale, &accept_language_codes);
return GetLanguageList(
*input_method::InputMethodManager::Get()->GetSupportedInputMethods(),
accept_language_codes,
StartupCustomizationDocument::GetInstance()->configured_locales(),
false);
}
scoped_ptr<base::ListValue> GetAndActivateLoginKeyboardLayouts(
const std::string& locale,
const std::string& selected,
bool activate_keyboards) {
scoped_ptr<base::ListValue> input_methods_list(new base::ListValue);
#if !defined(USE_ATHENA)
// TODO(dpolukhin): crbug.com/407579
input_method::InputMethodManager* manager =
input_method::InputMethodManager::Get();
input_method::InputMethodUtil* util = manager->GetInputMethodUtil();
const std::vector<std::string>& hardware_login_input_methods =
util->GetHardwareLoginInputMethodIds();
if (activate_keyboards) {
DCHECK(
ProfileHelper::IsSigninProfile(ProfileManager::GetActiveUserProfile()));
manager->GetActiveIMEState()->EnableLoginLayouts(
locale, hardware_login_input_methods);
}
scoped_ptr<input_method::InputMethodDescriptors> input_methods(
manager->GetActiveIMEState()->GetActiveInputMethods());
std::set<std::string> input_methods_added;
for (std::vector<std::string>::const_iterator i =
hardware_login_input_methods.begin();
i != hardware_login_input_methods.end();
++i) {
const input_method::InputMethodDescriptor* ime =
util->GetInputMethodDescriptorFromId(*i);
// Do not crash in case of misconfiguration.
if (ime) {
input_methods_added.insert(*i);
input_methods_list->Append(
CreateInputMethodsEntry(*ime, selected).release());
} else {
NOTREACHED();
}
}
bool optgroup_added = false;
for (size_t i = 0; i < input_methods->size(); ++i) {
// Makes sure the id is in legacy xkb id format.
const std::string& ime_id = (*input_methods)[i].id();
if (!InsertString(ime_id, &input_methods_added))
continue;
if (!optgroup_added) {
optgroup_added = true;
AddOptgroupOtherLayouts(input_methods_list.get());
}
input_methods_list->Append(CreateInputMethodsEntry((*input_methods)[i],
selected).release());
}
// "xkb:us::eng" should always be in the list of available layouts.
const std::string us_keyboard_id =
util->GetFallbackInputMethodDescriptor().id();
if (input_methods_added.find(us_keyboard_id) == input_methods_added.end()) {
const input_method::InputMethodDescriptor* us_eng_descriptor =
util->GetInputMethodDescriptorFromId(us_keyboard_id);
DCHECK(us_eng_descriptor);
if (!optgroup_added) {
optgroup_added = true;
AddOptgroupOtherLayouts(input_methods_list.get());
}
input_methods_list->Append(CreateInputMethodsEntry(*us_eng_descriptor,
selected).release());
}
#endif
return input_methods_list.Pass();
}
void GetKeyboardLayoutsForLocale(
const GetKeyboardLayoutsForLocaleCallback& callback,
const std::string& locale) {
base::SequencedWorkerPool* worker_pool =
content::BrowserThread::GetBlockingPool();
scoped_refptr<base::SequencedTaskRunner> background_task_runner =
worker_pool->GetSequencedTaskRunnerWithShutdownBehavior(
worker_pool->GetNamedSequenceToken(kSequenceToken),
base::SequencedWorkerPool::SKIP_ON_SHUTDOWN);
// Resolve |locale| on a background thread, then continue on the current
// thread.
std::string (*get_application_locale)(const std::string&, bool) =
&l10n_util::GetApplicationLocale;
base::PostTaskAndReplyWithResult(
background_task_runner.get(),
FROM_HERE,
base::Bind(get_application_locale, locale, false /* set_icu_locale */),
base::Bind(&GetKeyboardLayoutsForResolvedLocale, callback));
}
scoped_ptr<base::DictionaryValue> GetCurrentKeyboardLayout() {
const input_method::InputMethodDescriptor current_input_method =
input_method::InputMethodManager::Get()
->GetActiveIMEState()
->GetCurrentInputMethod();
return CreateInputMethodsEntry(current_input_method,
current_input_method.id());
}
} // namespace chromeos
|