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

Unified Diff: chrome/browser/ui/ash/ash_keyboard_controller_proxy.cc

Issue 103163009: Fix the bug that virtual keyboard window doesn't work. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 7 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/ash/ash_keyboard_controller_proxy.cc
diff --git a/chrome/browser/ui/ash/ash_keyboard_controller_proxy.cc b/chrome/browser/ui/ash/ash_keyboard_controller_proxy.cc
index b7c989a8fce181e0dc1776bcb5518cbfd3ca01b6..896a6545cc83f0d73f1f2eb56b1024d965c4f1cd 100644
--- a/chrome/browser/ui/ash/ash_keyboard_controller_proxy.cc
+++ b/chrome/browser/ui/ash/ash_keyboard_controller_proxy.cc
@@ -173,7 +173,6 @@ void AshKeyboardControllerProxy::ShowKeyboardContainer(
settings.SetTransitionDuration(
base::TimeDelta::FromMilliseconds(kAnimationDurationMs));
container->SetTransform(gfx::Transform());
- container->layer()->SetOpacity(1.0);
}
// TODO(bshe): Add animation observer and do the workspace resizing after
@@ -201,7 +200,6 @@ void AshKeyboardControllerProxy::HideKeyboardContainer(
gfx::Transform transform;
transform.Translate(0, GetKeyboardWindow()->bounds().height());
container->SetTransform(transform);
- container->layer()->SetOpacity(0.0);
KeyboardControllerProxy::HideKeyboardContainer(container);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698