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 // This file exists to aggregate all of the javascript used by the | 5 // This file exists to aggregate all of the javascript used by the |
6 // settings page into a single file which will be flattened and served | 6 // settings page into a single file which will be flattened and served |
7 // as a single resource. | 7 // as a single resource. |
8 <include src="controlled_setting.js"></include> | 8 <include src="controlled_setting.js"></include> |
9 <include src="deletable_item_list.js"></include> | 9 <include src="deletable_item_list.js"></include> |
10 <include src="inline_editable_list.js"></include> | 10 <include src="inline_editable_list.js"></include> |
(...skipping 12 matching lines...) Expand all Loading... |
23 <include src="chromeos/preferred_networks.js"></include> | 23 <include src="chromeos/preferred_networks.js"></include> |
24 <include src="chromeos/bluetooth_device_list.js"></include> | 24 <include src="chromeos/bluetooth_device_list.js"></include> |
25 <include src="chromeos/bluetooth_add_device_overlay.js"></include> | 25 <include src="chromeos/bluetooth_add_device_overlay.js"></include> |
26 <include src="chromeos/bluetooth_pair_device_overlay.js"></include> | 26 <include src="chromeos/bluetooth_pair_device_overlay.js"></include> |
27 <include src="chromeos/accounts_options.js"></include> | 27 <include src="chromeos/accounts_options.js"></include> |
28 <include src="chromeos/proxy_rules_list.js"></include> | 28 <include src="chromeos/proxy_rules_list.js"></include> |
29 <include src="chromeos/accounts_user_list.js"></include> | 29 <include src="chromeos/accounts_user_list.js"></include> |
30 <include src="chromeos/accounts_user_name_edit.js"></include> | 30 <include src="chromeos/accounts_user_name_edit.js"></include> |
31 <include src="chromeos/keyboard_overlay.js"></include> | 31 <include src="chromeos/keyboard_overlay.js"></include> |
32 <include src="chromeos/pointer_overlay.js"></include> | 32 <include src="chromeos/pointer_overlay.js"></include> |
33 <include src="chromeos/virtual_keyboard.js"></include> | |
34 <include src="chromeos/virtual_keyboard_list.js"></include> | |
35 var AccountsOptions = options.AccountsOptions; | 33 var AccountsOptions = options.AccountsOptions; |
36 var ChangePictureOptions = options.ChangePictureOptions; | 34 var ChangePictureOptions = options.ChangePictureOptions; |
37 var DetailsInternetPage = options.internet.DetailsInternetPage; | 35 var DetailsInternetPage = options.internet.DetailsInternetPage; |
38 var BluetoothOptions = options.BluetoothOptions; | 36 var BluetoothOptions = options.BluetoothOptions; |
39 var BluetoothPairing = options.BluetoothPairing; | 37 var BluetoothPairing = options.BluetoothPairing; |
40 var KeyboardOverlay = options.KeyboardOverlay; | 38 var KeyboardOverlay = options.KeyboardOverlay; |
41 var PointerOverlay = options.PointerOverlay; | 39 var PointerOverlay = options.PointerOverlay; |
42 var UIAccountTweaks = uiAccountTweaks.UIAccountTweaks; | 40 var UIAccountTweaks = uiAccountTweaks.UIAccountTweaks; |
43 </if> | 41 </if> |
44 <if expr="pp_ifdef('chromeos') and pp_ifdef('use_ash')"> | 42 <if expr="pp_ifdef('chromeos') and pp_ifdef('use_ash')"> |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 <include src="profiles_icon_grid.js"></include> | 86 <include src="profiles_icon_grid.js"></include> |
89 <include src="search_engine_manager.js"></include> | 87 <include src="search_engine_manager.js"></include> |
90 <include src="search_engine_manager_engine_list.js"></include> | 88 <include src="search_engine_manager_engine_list.js"></include> |
91 <include src="search_page.js"></include> | 89 <include src="search_page.js"></include> |
92 <include src="session_restore_overlay.js"></include> | 90 <include src="session_restore_overlay.js"></include> |
93 <include src="spelling_confirm_overlay.js"></include> | 91 <include src="spelling_confirm_overlay.js"></include> |
94 <include src="startup_overlay.js"></include> | 92 <include src="startup_overlay.js"></include> |
95 <include src="../sync_setup_overlay.js"></include> | 93 <include src="../sync_setup_overlay.js"></include> |
96 <include src="../uber/uber_utils.js"></include> | 94 <include src="../uber/uber_utils.js"></include> |
97 <include src="options.js"></include> | 95 <include src="options.js"></include> |
OLD | NEW |