| 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"> |
| 10 | 10 |
| 11 cr.define('cr.ui.Oobe', function() { | 11 cr.define('cr.ui.Oobe', function() { |
| 12 return { | 12 return { |
| 13 /** | 13 /** |
| 14 * Initializes the OOBE flow. This will cause all C++ handlers to | 14 * Initializes the OOBE flow. This will cause all C++ handlers to |
| 15 * be invoked to do final setup. | 15 * be invoked to do final setup. |
| 16 */ | 16 */ |
| 17 initialize: function() { | 17 initialize: function() { |
| 18 cr.ui.login.DisplayManager.initialize(); | 18 cr.ui.login.DisplayManager.initialize(); |
| 19 login.WrongHWIDScreen.register(); | 19 login.WrongHWIDScreen.register(); |
| (...skipping 24 matching lines...) Expand all Loading... |
| 44 handleSpokenFeedbackClick: function(e) {}, | 44 handleSpokenFeedbackClick: function(e) {}, |
| 45 handleHighContrastClick: function(e) {}, | 45 handleHighContrastClick: function(e) {}, |
| 46 handleScreenMagnifierClick: function(e) {}, | 46 handleScreenMagnifierClick: function(e) {}, |
| 47 setUsageStats: function(checked) {}, | 47 setUsageStats: function(checked) {}, |
| 48 setOemEulaUrl: function(oemEulaUrl) {}, | 48 setOemEulaUrl: function(oemEulaUrl) {}, |
| 49 setTpmPassword: function(password) {}, | 49 setTpmPassword: function(password) {}, |
| 50 refreshA11yInfo: function(data) {}, | 50 refreshA11yInfo: function(data) {}, |
| 51 reloadContent: function(data) {}, | 51 reloadContent: function(data) {}, |
| 52 }; | 52 }; |
| 53 }); | 53 }); |
| OLD | NEW |