| Index: chrome/browser/chromeos/login/lock/webui_screen_locker.cc
|
| diff --git a/chrome/browser/chromeos/login/lock/webui_screen_locker.cc b/chrome/browser/chromeos/login/lock/webui_screen_locker.cc
|
| index 9df4a3b3600b42de878416b9533fd840e1a3b516..fa72cd9cb260f5ed57535cd779bf5c28f762733c 100644
|
| --- a/chrome/browser/chromeos/login/lock/webui_screen_locker.cc
|
| +++ b/chrome/browser/chromeos/login/lock/webui_screen_locker.cc
|
| @@ -375,16 +375,12 @@ void WebUIScreenLocker::OnKeyboardBoundsChanging(
|
| const gfx::Rect& new_bounds) {
|
| if (new_bounds.IsEmpty()) {
|
| // Keyboard has been hidden.
|
| - if (GetOobeUI()) {
|
| + if (GetOobeUI())
|
| GetOobeUI()->GetCoreOobeActor()->ShowControlBar(true);
|
| - GetOobeUI()->GetCoreOobeActor()->SetKeyboardState(false, new_bounds);
|
| - }
|
| } else {
|
| // Keyboard has been shown.
|
| - if (GetOobeUI()) {
|
| + if (GetOobeUI())
|
| GetOobeUI()->GetCoreOobeActor()->ShowControlBar(false);
|
| - GetOobeUI()->GetCoreOobeActor()->SetKeyboardState(true, new_bounds);
|
| - }
|
| }
|
| }
|
|
|
|
|