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

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

Issue 1808223003: Refactor oobe/login screens so lock screen can be loaded faster. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Rename login_login_oobe_shared to login_non_lock_shared + misc changes Created 4 years, 8 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) 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 Out of the box experience flow (OOBE). 6 * @fileoverview Out of the box experience flow (OOBE).
7 * This is the main code for the OOBE WebUI implementation. 7 * This is the main code for the OOBE WebUI implementation.
8 */ 8 */
9 9
10 <include src="login_common.js"> 10 <include src="login_shared.js">
11 <include src="login_non_lock_shared.js">
11 <include src="oobe_screen_auto_enrollment_check.js"> 12 <include src="oobe_screen_auto_enrollment_check.js">
12 <include src="oobe_screen_controller_pairing.js"> 13 <include src="oobe_screen_controller_pairing.js">
13 <include src="oobe_screen_enable_debugging.js"> 14 <include src="oobe_screen_enable_debugging.js">
14 <include src="oobe_screen_eula.js"> 15 <include src="oobe_screen_eula.js">
15 <include src="oobe_screen_hid_detection.js"> 16 <include src="oobe_screen_hid_detection.js">
16 <include src="oobe_screen_host_pairing.js"> 17 <include src="oobe_screen_host_pairing.js">
17 <include src="oobe_screen_network.js"> 18 <include src="oobe_screen_network.js">
18 <include src="oobe_screen_update.js"> 19 <include src="oobe_screen_update.js">
19 20
20 cr.define('cr.ui.Oobe', function() { 21 cr.define('cr.ui.Oobe', function() {
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 /** 288 /**
288 * Updates localized content of the screens. 289 * Updates localized content of the screens.
289 * Should be executed on language change. 290 * Should be executed on language change.
290 */ 291 */
291 updateLocalizedContent: function() { 292 updateLocalizedContent: function() {
292 // Buttons, headers and links. 293 // Buttons, headers and links.
293 Oobe.getInstance().updateLocalizedContent_(); 294 Oobe.getInstance().updateLocalizedContent_();
294 } 295 }
295 }; 296 };
296 }); 297 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/login/oobe.html ('k') | chrome/browser/ui/webui/chromeos/login/oobe_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698