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

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

Issue 406143002: webui: Remove unnecessary </include>s everywhere. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: GARRRRRR Created 6 years, 5 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 | Annotate | Revision Log
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 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
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 });
OLDNEW
« no previous file with comments | « chrome/browser/resources/about_memory.js ('k') | chrome/browser/resources/chromeos/login/login_common.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698