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

Side by Side Diff: chrome/browser/resources/app_list/start_page.js

Issue 586783003: webui: change all <include/> to <include>. Same thing, less bits. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: revert print_preview, axe some whitespace Created 6 years, 3 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 App launcher start page implementation. 6 * @fileoverview App launcher start page implementation.
7 */ 7 */
8 8
9 <include src="recommended_apps.js"/> 9 <include src="recommended_apps.js">
10 <include src="speech_manager.js"/> 10 <include src="speech_manager.js">
11 11
12 cr.define('appList.startPage', function() { 12 cr.define('appList.startPage', function() {
13 'use strict'; 13 'use strict';
14 14
15 var speechManager = null; 15 var speechManager = null;
16 16
17 /** 17 /**
18 * Creates a StartPage object. 18 * Creates a StartPage object.
19 * @constructor 19 * @constructor
20 * @extends {HTMLDivElement} 20 * @extends {HTMLDivElement}
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 setHotwordEnabled: setHotwordEnabled, 113 setHotwordEnabled: setHotwordEnabled,
114 setNaclArch: setNaclArch, 114 setNaclArch: setNaclArch,
115 onAppListShown: onAppListShown, 115 onAppListShown: onAppListShown,
116 onAppListHidden: onAppListHidden, 116 onAppListHidden: onAppListHidden,
117 toggleSpeechRecognition: toggleSpeechRecognition 117 toggleSpeechRecognition: toggleSpeechRecognition
118 }; 118 };
119 }); 119 });
120 120
121 document.addEventListener('contextmenu', function(e) { e.preventDefault(); }); 121 document.addEventListener('contextmenu', function(e) { e.preventDefault(); });
122 document.addEventListener('DOMContentLoaded', appList.startPage.initialize); 122 document.addEventListener('DOMContentLoaded', appList.startPage.initialize);
OLDNEW
« no previous file with comments | « chrome/browser/resources/app_list/start_page.css ('k') | chrome/browser/resources/chromeos/keyboard_overlay.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698