| Index: chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc
|
| diff --git a/chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc
|
| index f03cf3558a8e29b3c33b5a141af54730c3b738f9..f8c254ba87f6b10e4691a2c4849a1d46651c5213 100644
|
| --- a/chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc
|
| +++ b/chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc
|
| @@ -222,7 +222,7 @@ ListValue* NetworkScreenHandler::GetInputMethods() {
|
| input_method::InputMethodManager::GetInstance();
|
| scoped_ptr<input_method::InputMethodDescriptors> input_methods(
|
| manager->GetActiveInputMethods());
|
| - std::string current_input_method_id = manager->current_input_method().id();
|
| + std::string current_input_method_id = manager->GetCurrentInputMethod().id();
|
| for (size_t i = 0; i < input_methods->size(); ++i) {
|
| DictionaryValue* input_method = new DictionaryValue;
|
| input_method->SetString("value", input_methods->at(i).id());
|
|
|