Index: chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc |
diff --git a/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc b/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc |
index b5f2b6c31b532b4b32f3fbd5291df0926d79e2e5..852df4c57c34308ca1f8da4f2667404e4b9ab828 100644 |
--- a/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc |
+++ b/chrome/browser/ui/webui/chromeos/login/core_oobe_handler.cc |
@@ -230,10 +230,6 @@ void CoreOobeHandler::ShowControlBar(bool show) { |
CallJS("showControlBar", show); |
} |
-void CoreOobeHandler::SetKeyboardState(bool shown, const gfx::Rect& bounds) { |
- CallJS("setKeyboardState", shown, bounds.width(), bounds.height()); |
-} |
- |
void CoreOobeHandler::SetClientAreaSize(int width, int height) { |
CallJS("setClientAreaSize", width, height); |
} |
@@ -387,7 +383,6 @@ void CoreOobeHandler::UpdateKeyboardState() { |
if (keyboard_controller) { |
flackr
2015/06/25 18:01:37
Is it possible for the keyboard_controller to go a
bshe
2015/06/25 21:15:07
I am not sure I understand you correctly. But if k
flackr
2015/06/25 21:49:28
So my thoughts are we are on the lock screen with
bshe
2015/06/26 17:22:48
I see what you mean. When shell deactivates keyboa
|
gfx::Rect bounds = keyboard_controller->current_keyboard_bounds(); |
ShowControlBar(bounds.IsEmpty()); |
- SetKeyboardState(!bounds.IsEmpty(), bounds); |
} |
} |