| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_common.js"></include> | 9 <include src="login_common.js"></include> |
| 10 | 10 |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 }, | 36 }, |
| 37 | 37 |
| 38 // Dummy Oobe functions not present with stripped login UI. | 38 // Dummy Oobe functions not present with stripped login UI. |
| 39 initializeA11yMenu: function(e) {}, | 39 initializeA11yMenu: function(e) {}, |
| 40 handleAccessbilityLinkClick: function(e) {}, | 40 handleAccessbilityLinkClick: function(e) {}, |
| 41 handleSpokenFeedbackClick: function(e) {}, | 41 handleSpokenFeedbackClick: function(e) {}, |
| 42 handleHighContrastClick: function(e) {}, | 42 handleHighContrastClick: function(e) {}, |
| 43 handleScreenMagnifierClick: function(e) {}, | 43 handleScreenMagnifierClick: function(e) {}, |
| 44 setUsageStats: function(checked) {}, | 44 setUsageStats: function(checked) {}, |
| 45 setOemEulaUrl: function(oemEulaUrl) {}, | 45 setOemEulaUrl: function(oemEulaUrl) {}, |
| 46 setUpdateProgress: function(progress) {}, | |
| 47 showUpdateEstimatedTimeLeft: function(enable) {}, | |
| 48 setUpdateEstimatedTimeLeft: function(seconds) {}, | |
| 49 setUpdateMessage: function(message) {}, | |
| 50 showUpdateCurtain: function(enable) {}, | |
| 51 setTpmPassword: function(password) {}, | 46 setTpmPassword: function(password) {}, |
| 52 refreshA11yInfo: function(data) {}, | 47 refreshA11yInfo: function(data) {}, |
| 53 reloadContent: function(data) {}, | 48 reloadContent: function(data) {}, |
| 54 }; | 49 }; |
| 55 }); | 50 }); |
| OLD | NEW |