Chromium Code Reviews| Index: chrome/browser/resources/options/browser_options.js |
| diff --git a/chrome/browser/resources/options/browser_options.js b/chrome/browser/resources/options/browser_options.js |
| index 66a170d44a0ad77c04cf364d5a96dc87d78f9c2f..b0cfc5ab7e3e79bd2da8fc7663f3e45a9389d5e2 100644 |
| --- a/chrome/browser/resources/options/browser_options.js |
| +++ b/chrome/browser/resources/options/browser_options.js |
| @@ -438,6 +438,7 @@ cr.define('options', function() { |
| if (loadTimeData.getBoolean('showQuickUnlockSettings')) { |
| $('manage-screenlock').onclick = function(event) { |
| PageManager.showPageByName('quickUnlockConfigureOverlay'); |
| + recordLockScreenProgress(LockScreenProgress.START_SCREEN_LOCK); |
|
Dan Beam
2016/09/16 21:43:15
where is this method included from? i don't see a
sammiequon
2016/09/17 00:08:15
I'm not quite sure where to add this file, is opti
Dan Beam
2016/09/17 00:36:03
how about a <script> or <link rel=import> in brows
sammiequon
2016/09/21 18:22:43
Done.
|
| }; |
| $('manage-screenlock').hidden = false; |
| } |