| Index: chrome/browser/chromeos/login/ui/login_display_host_impl.cc
|
| diff --git a/chrome/browser/chromeos/login/ui/login_display_host_impl.cc b/chrome/browser/chromeos/login/ui/login_display_host_impl.cc
|
| index f4ee2967a6be88622c5d383caf8070539796a943..ae9d5658b54785dccebd2a9b6c24d4c10a5518a3 100644
|
| --- a/chrome/browser/chromeos/login/ui/login_display_host_impl.cc
|
| +++ b/chrome/browser/chromeos/login/ui/login_display_host_impl.cc
|
| @@ -858,16 +858,12 @@ void LoginDisplayHostImpl::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 if (!new_bounds.IsEmpty()) {
|
| // Keyboard has been shown.
|
| - if (GetOobeUI()) {
|
| + if (GetOobeUI())
|
| GetOobeUI()->GetCoreOobeActor()->ShowControlBar(false);
|
| - GetOobeUI()->GetCoreOobeActor()->SetKeyboardState(true, new_bounds);
|
| - }
|
| }
|
| }
|
|
|
|
|