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"></include> |
6 <include src="extension_commands_overlay.js"></include> | 6 <include src="extension_commands_overlay.js"></include> |
7 <include src="extension_focus_manager.js"></include> | 7 <include src="extension_focus_manager.js"></include> |
8 <include src="extension_list.js"></include> | 8 <include src="extension_list.js"></include> |
9 <include src="pack_extension_overlay.js"></include> | 9 <include src="pack_extension_overlay.js"></include> |
10 <include src="extension_error_overlay.js"></include> | 10 <include src="extension_error_overlay.js"></include> |
11 | 11 |
12 <if expr="pp_ifdef('chromeos')"> | 12 <if expr="chromeos"> |
13 <include src="chromeos/kiosk_apps.js"></include> | 13 <include src="chromeos/kiosk_apps.js"></include> |
14 </if> | 14 </if> |
15 | 15 |
16 // Used for observing function of the backend datasource for this page by | 16 // Used for observing function of the backend datasource for this page by |
17 // tests. | 17 // tests. |
18 var webuiResponded = false; | 18 var webuiResponded = false; |
19 | 19 |
20 cr.define('extensions', function() { | 20 cr.define('extensions', function() { |
21 var ExtensionsList = options.ExtensionsList; | 21 var ExtensionsList = options.ExtensionsList; |
22 | 22 |
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 | 399 |
400 // Export | 400 // Export |
401 return { | 401 return { |
402 ExtensionSettings: ExtensionSettings | 402 ExtensionSettings: ExtensionSettings |
403 }; | 403 }; |
404 }); | 404 }); |
405 | 405 |
406 window.addEventListener('load', function(e) { | 406 window.addEventListener('load', function(e) { |
407 extensions.ExtensionSettings.getInstance().initialize(); | 407 extensions.ExtensionSettings.getInstance().initialize(); |
408 }); | 408 }); |
OLD | NEW |