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

Side by Side Diff: chrome/browser/resources/chromeos/login/lock.js

Issue 2856683002: cros: Replace "TPM" with "secure module" for machines without TPM. (Closed)
Patch Set: Suffixed chromeos for chromeos compiling of secure_module_*. Created 3 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Login UI based on a stripped down OOBE controller. 6 * @fileoverview Login UI based on a stripped down OOBE controller.
7 */ 7 */
8 8
9 // <include src="login_shared.js"> 9 // <include src="login_shared.js">
10 10
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 // Dummy Oobe functions not present with stripped login UI. 73 // Dummy Oobe functions not present with stripped login UI.
74 initializeA11yMenu: function(e) {}, 74 initializeA11yMenu: function(e) {},
75 handleAccessibilityLinkClick: function(e) {}, 75 handleAccessibilityLinkClick: function(e) {},
76 handleSpokenFeedbackClick: function(e) {}, 76 handleSpokenFeedbackClick: function(e) {},
77 handleHighContrastClick: function(e) {}, 77 handleHighContrastClick: function(e) {},
78 handleScreenMagnifierClick: function(e) {}, 78 handleScreenMagnifierClick: function(e) {},
79 setUsageStats: function(checked) {}, 79 setUsageStats: function(checked) {},
80 setOemEulaUrl: function(oemEulaUrl) {}, 80 setOemEulaUrl: function(oemEulaUrl) {},
81 setTpmPassword: function(password) {}, 81 setTpmPassword: function(password) {},
82 refreshA11yInfo: function(data) {}, 82 refreshA11yInfo: function(data) {},
83 reloadEulaContent: function(data) {},
83 84
84 /** 85 /**
85 * Reloads content of the page. 86 * Reloads content of the page.
86 * @param {!Object} data New dictionary with i18n values. 87 * @param {!Object} data New dictionary with i18n values.
87 */ 88 */
88 reloadContent: function(data) { 89 reloadContent: function(data) {
89 loadTimeData.overrideValues(data); 90 loadTimeData.overrideValues(data);
90 i18nTemplate.process(document, loadTimeData); 91 i18nTemplate.process(document, loadTimeData);
91 Oobe.getInstance().updateLocalizedContent_(); 92 Oobe.getInstance().updateLocalizedContent_();
92 }, 93 },
93 }; 94 };
94 }); 95 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698