Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(536)

Unified Diff: ash/wm/virtual_keyboard_container_layout_manager.cc

Issue 1008453002: Allow javascript change the virtual keyboard window size and position freely in FLOATING mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: format Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/wm/virtual_keyboard_container_layout_manager.h ('k') | ui/keyboard/keyboard_controller.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/virtual_keyboard_container_layout_manager.cc
diff --git a/ash/wm/virtual_keyboard_container_layout_manager.cc b/ash/wm/virtual_keyboard_container_layout_manager.cc
deleted file mode 100644
index aae3ec8fbf86e689877058a1b5848fbfd6ef2e52..0000000000000000000000000000000000000000
--- a/ash/wm/virtual_keyboard_container_layout_manager.cc
+++ /dev/null
@@ -1,44 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ash/wm/virtual_keyboard_container_layout_manager.h"
-
-#include "ash/shell_window_ids.h"
-#include "ui/aura/window.h"
-#include "ui/keyboard/keyboard_controller.h"
-
-namespace ash {
-
-////////////////////////////////////////////////////////////////////////////////
-// VirtualKeyboardContainerLayoutManager, public:
-
-VirtualKeyboardContainerLayoutManager::VirtualKeyboardContainerLayoutManager(
- aura::Window* container)
- : SnapToPixelLayoutManager(container),
- parent_container_(container) {}
-
-VirtualKeyboardContainerLayoutManager::~VirtualKeyboardContainerLayoutManager()
-{
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// VirtualKeyboardContainerLayoutManager, aura::LayoutManager implementation:
-
-void VirtualKeyboardContainerLayoutManager::OnWindowResized() {
- keyboard::KeyboardController* keyboard_controller =
- keyboard::KeyboardController::GetInstance();
- if (!keyboard_controller)
- return;
-
- // The layout manager for the root window propagates a resize to its
- // immediate children and grandchildren, but stops there. The keyboard
- // container is three levels deep, and therefore needs to be explicitly
- // updated when its parent is resized.
- aura::Window* keyboard_container =
- keyboard_controller->GetContainerWindow();
- if (keyboard_container)
- keyboard_container->SetBounds(parent_container_->bounds());
-}
-
-} // namespace ash
« no previous file with comments | « ash/wm/virtual_keyboard_container_layout_manager.h ('k') | ui/keyboard/keyboard_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698