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

Unified Diff: ui/login/display_manager.js

Issue 1205063002: Fix user pod not always scroll to the center after VK shows up (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review Created 5 years, 6 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 | « ui/login/account_picker/user_pod_row.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/login/display_manager.js
diff --git a/ui/login/display_manager.js b/ui/login/display_manager.js
index c944750be080ea1134532356fe251e8eaec55d01..c18163b0fbcc376ea11bc69a729da110472ebe5b 100644
--- a/ui/login/display_manager.js
+++ b/ui/login/display_manager.js
@@ -203,24 +203,6 @@ cr.define('cr.ui.login', function() {
forceKeyboardFlow_: false,
/**
- * Whether virtual keyboard is shown.
- * @type {boolean}
- */
- virtualKeyboardShown_: false,
-
- /**
- * Virtual keyboard width.
- * @type {number}
- */
- virtualKeyboardWidth_: 0,
-
- /**
- * Virtual keyboard height.
- * @type {number}
- */
- virtualKeyboardHeight_: 0,
-
- /**
* Type of UI.
* @type {string}
*/
@@ -274,28 +256,6 @@ cr.define('cr.ui.login', function() {
},
/**
- * Virtual keyboard state (hidden/shown).
- * @param {boolean} hidden Whether keyboard is shown.
- */
- get virtualKeyboardShown() {
- return this.virtualKeyboardShown_;
- },
-
- set virtualKeyboardShown(shown) {
- this.virtualKeyboardShown_ = shown;
- },
-
- /**
- * Sets the current size of the virtual keyboard.
- * @param {number} width keyboard width
- * @param {number} height keyboard height
- */
- setVirtualKeyboardSize: function(width, height) {
- this.virtualKeyboardWidth_ = width;
- this.virtualKeyboardHeight_ = height;
- },
-
- /**
* Sets the current size of the client area (display size).
* @param {number} width client area width
* @param {number} height client area height
« no previous file with comments | « ui/login/account_picker/user_pod_row.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698