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

Unified Diff: chrome/browser/resources/chromeos/login/login_shared.js

Issue 2260653002: Pin keyboard works with virtual keyboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Nit. Created 4 years, 4 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
Index: chrome/browser/resources/chromeos/login/login_shared.js
diff --git a/chrome/browser/resources/chromeos/login/login_shared.js b/chrome/browser/resources/chromeos/login/login_shared.js
index 0c50cd4ef9ba91c4d6eca8b37033f32217ffa71f..77439f3643b0a9c8a5b07f74d4d168dcee081cd8 100644
--- a/chrome/browser/resources/chromeos/login/login_shared.js
+++ b/chrome/browser/resources/chromeos/login/login_shared.js
@@ -394,6 +394,13 @@ cr.define('cr.ui', function() {
};
/**
+ * Shows/hides pin keyboard on the lock screen.
+ */
+ Oobe.showPinKeyboard = function(show) {
+ Oobe.getInstance().pinHidden = !show;
+ };
+
+ /**
* Sets the current size of the client area (display size).
* @param {number} width client area width
* @param {number} height client area height

Powered by Google App Engine
This is Rietveld 408576698