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 <include src="../../../../ui/webui/resources/js/cr/ui/focus_row.js"> | 5 // <include src="../../../../ui/webui/resources/js/cr/ui/focus_row.js"> |
6 <include src="../../../../ui/webui/resources/js/cr/ui/focus_grid.js"> | 6 // <include src="../../../../ui/webui/resources/js/cr/ui/focus_grid.js"> |
7 <include src="../uber/uber_utils.js"> | 7 // <include src="../uber/uber_utils.js"> |
8 <include src="drag_and_drop_handler.js"> | 8 // <include src="drag_and_drop_handler.js"> |
9 <include src="extension_code.js"> | 9 // <include src="extension_code.js"> |
10 <include src="extension_commands_overlay.js"> | 10 // <include src="extension_commands_overlay.js"> |
11 <include src="extension_error_overlay.js"> | 11 // <include src="extension_error_overlay.js"> |
12 <include src="extension_focus_manager.js"> | 12 // <include src="extension_focus_manager.js"> |
13 <include src="focus_row.js"> | 13 // <include src="focus_row.js"> |
14 <include src="extension_list.js"> | 14 // <include src="extension_list.js"> |
15 <include src="pack_extension_overlay.js"> | 15 // <include src="pack_extension_overlay.js"> |
16 <include src="extension_loader.js"> | 16 // <include src="extension_loader.js"> |
17 <include src="extension_options_overlay.js"> | 17 // <include src="extension_options_overlay.js"> |
18 | 18 |
19 <if expr="chromeos"> | 19 // <if expr="chromeos"> |
20 <include src="chromeos/kiosk_apps.js"> | 20 // <include src="chromeos/kiosk_apps.js"> |
21 </if> | 21 // </if> |
22 | 22 |
23 // Used for observing function of the backend datasource for this page by | 23 // Used for observing function of the backend datasource for this page by |
24 // tests. | 24 // tests. |
25 var webuiResponded = false; | 25 var webuiResponded = false; |
26 | 26 |
27 cr.define('extensions', function() { | 27 cr.define('extensions', function() { |
28 var ExtensionList = extensions.ExtensionList; | 28 var ExtensionList = extensions.ExtensionList; |
29 | 29 |
30 /** | 30 /** |
31 * ExtensionSettings class | 31 * ExtensionSettings class |
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
463 | 463 |
464 // Export | 464 // Export |
465 return { | 465 return { |
466 ExtensionSettings: ExtensionSettings | 466 ExtensionSettings: ExtensionSettings |
467 }; | 467 }; |
468 }); | 468 }); |
469 | 469 |
470 window.addEventListener('load', function(e) { | 470 window.addEventListener('load', function(e) { |
471 extensions.ExtensionSettings.getInstance().initialize(); | 471 extensions.ExtensionSettings.getInstance().initialize(); |
472 }); | 472 }); |
OLD | NEW |