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) { |
gfx::Rect bounds = keyboard_controller->current_keyboard_bounds(); |
ShowControlBar(bounds.IsEmpty()); |
- SetKeyboardState(!bounds.IsEmpty(), bounds); |
} |
} |