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="../uber/uber_utils.js"></include> | 5 <include src="../uber/uber_utils.js"> |
6 <include src="extension_code.js"></include> | 6 <include src="extension_code.js"> |
7 <include src="extension_commands_overlay.js"></include> | 7 <include src="extension_commands_overlay.js"> |
8 <include src="extension_focus_manager.js"></include> | 8 <include src="extension_focus_manager.js"> |
9 <include src="extension_list.js"></include> | 9 <include src="extension_list.js"> |
10 <include src="pack_extension_overlay.js"></include> | 10 <include src="pack_extension_overlay.js"> |
11 <include src="extension_error_overlay.js"></include> | 11 <include src="extension_error_overlay.js"> |
12 <include src="extension_loader.js"></include> | 12 <include src="extension_loader.js"> |
13 | 13 |
14 <if expr="chromeos"> | 14 <if expr="chromeos"> |
15 <include src="chromeos/kiosk_apps.js"></include> | 15 <include src="chromeos/kiosk_apps.js"> |
16 </if> | 16 </if> |
17 | 17 |
18 // Used for observing function of the backend datasource for this page by | 18 // Used for observing function of the backend datasource for this page by |
19 // tests. | 19 // tests. |
20 var webuiResponded = false; | 20 var webuiResponded = false; |
21 | 21 |
22 cr.define('extensions', function() { | 22 cr.define('extensions', function() { |
23 var ExtensionsList = options.ExtensionsList; | 23 var ExtensionsList = options.ExtensionsList; |
24 | 24 |
25 // Implements the DragWrapper handler interface. | 25 // Implements the DragWrapper handler interface. |
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
434 | 434 |
435 // Export | 435 // Export |
436 return { | 436 return { |
437 ExtensionSettings: ExtensionSettings | 437 ExtensionSettings: ExtensionSettings |
438 }; | 438 }; |
439 }); | 439 }); |
440 | 440 |
441 window.addEventListener('load', function(e) { | 441 window.addEventListener('load', function(e) { |
442 extensions.ExtensionSettings.getInstance().initialize(); | 442 extensions.ExtensionSettings.getInstance().initialize(); |
443 }); | 443 }); |
OLD | NEW |