OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection;" id="t"> | 2 <html i18n-values="dir:textdirection;" id="t"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
6 | 6 |
7 <!-- TODO(zelidrag) need a better icon here --> | 7 <!-- TODO(zelidrag) need a better icon here --> |
8 <link rel="icon" href="../../app/theme/history_favicon.png"> | 8 <link rel="icon" href="../../app/theme/history_favicon.png"> |
9 | 9 |
10 <script src="chrome://resources/js/class_list.js"></script> | 10 <script src="chrome://resources/js/class_list.js"></script> |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 </script> | 92 </script> |
93 <link rel="stylesheet" href="chrome://resources/css/list.css"> | 93 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
94 | 94 |
95 <link rel="stylesheet" href="dom_ui.css"> | 95 <link rel="stylesheet" href="dom_ui.css"> |
96 <link rel="stylesheet" href="options/options_page.css"> | 96 <link rel="stylesheet" href="options/options_page.css"> |
97 <link rel="stylesheet" href="options/browser_options_page.css"> | 97 <link rel="stylesheet" href="options/browser_options_page.css"> |
98 <link rel="stylesheet" href="options/content_settings_page.css"> | 98 <link rel="stylesheet" href="options/content_settings_page.css"> |
99 <if expr="pp_ifdef('chromeos')"> | 99 <if expr="pp_ifdef('chromeos')"> |
100 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css"> | 100 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css"> |
101 </if> | 101 </if> |
| 102 <link rel="stylesheet" href="options/personal_options.css"> |
102 </head> | 103 </head> |
103 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 104 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
104 <div class="header"> | 105 <div class="header"> |
105 </div> | 106 </div> |
106 <div id="overlay" class="overlay hidden"> | 107 <div id="overlay" class="overlay hidden"> |
107 <div id="overlayview"> | 108 <div id="overlayview"> |
108 <button id="close-overlay" onclick="OptionsPage.clearOverlays();"></button> | 109 <button id="close-overlay" onclick="OptionsPage.clearOverlays();"></button> |
109 <div class="page hidden" id="dummyPage"> | 110 <div class="page hidden" id="dummyPage"> |
110 <!-- TODO(dhg): remove this one once we get another page here --> | 111 <!-- TODO(dhg): remove this one once we get another page here --> |
111 Dummy Overlay Page | 112 Dummy Overlay Page |
(...skipping 16 matching lines...) Expand all Loading... |
128 <if expr="pp_ifdef('chromeos')"> | 129 <if expr="pp_ifdef('chromeos')"> |
129 <include src="options/chromeos_system_options.html"> | 130 <include src="options/chromeos_system_options.html"> |
130 <include src="options/chromeos_language_options.html"> | 131 <include src="options/chromeos_language_options.html"> |
131 <include src="options/chromeos_labs.html"> | 132 <include src="options/chromeos_labs.html"> |
132 <include src="options/chromeos_accounts_options.html"> | 133 <include src="options/chromeos_accounts_options.html"> |
133 <!-- TODO(mazda): include options/chromeos_language_hangul_options.html | 134 <!-- TODO(mazda): include options/chromeos_language_hangul_options.html |
134 once the language options dialog is ready. --> | 135 once the language options dialog is ready. --> |
135 </if> | 136 </if> |
136 <include src="options/browser_options.html"> | 137 <include src="options/browser_options.html"> |
137 <include src="options/personal_options.html"> | 138 <include src="options/personal_options.html"> |
| 139 <include src="options/sync_options.html"> |
138 <include src="options/advanced_options.html"> | 140 <include src="options/advanced_options.html"> |
139 <include src="options/content_settings.html"> | 141 <include src="options/content_settings.html"> |
140 <include src="options/sync_options.html"> | |
141 </div> | 142 </div> |
142 </div> | 143 </div> |
143 | 144 |
144 <script> | 145 <script> |
145 // Decorate the existing elements in the document. | 146 // Decorate the existing elements in the document. |
146 cr.ui.decorate('input[pref][type=checkbox]', PrefCheckbox); | 147 cr.ui.decorate('input[pref][type=checkbox]', PrefCheckbox); |
| 148 cr.ui.decorate('input[pref][type=radio]', PrefRadio); |
147 cr.ui.decorate('input[pref][type=range]', PrefRange); | 149 cr.ui.decorate('input[pref][type=range]', PrefRange); |
148 cr.ui.decorate('select[pref]', PrefSelect); | 150 cr.ui.decorate('select[pref]', PrefSelect); |
149 cr.ui.decorate('#contentSettingsPage input[type=radio]', ContentSettingsRadio); | 151 cr.ui.decorate('#contentSettingsPage input[type=radio]', ContentSettingsRadio); |
150 // TODO(zelidrag) add other elements here when we implement them | 152 // TODO(zelidrag) add other elements here when we implement them |
151 </script> | 153 </script> |
152 </body> | 154 </body> |
153 </html> | 155 </html> |
OLD | NEW |