Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(436)

Side by Side Diff: chrome/browser/resources/options.html

Issue 3171003: DOMUI: Add basic HTML for the AutoFill options page. (Closed)
Patch Set: 80 cols. Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 151
152 window.onpopstate = function(e) { 152 window.onpopstate = function(e) {
153 options.OptionsPage.setState(e.state); 153 options.OptionsPage.setState(e.state);
154 }; 154 };
155 </script> 155 </script>
156 <link rel="stylesheet" href="chrome://resources/css/list.css"> 156 <link rel="stylesheet" href="chrome://resources/css/list.css">
157 <link rel="stylesheet" href="dom_ui.css"> 157 <link rel="stylesheet" href="dom_ui.css">
158 <link rel="stylesheet" href="options/options_page.css"> 158 <link rel="stylesheet" href="options/options_page.css">
159 159
160 <link rel="stylesheet" href="options/add_startup_page_overlay.css"> 160 <link rel="stylesheet" href="options/add_startup_page_overlay.css">
161 <link rel="stylesheet" href="options/autofill_options_page.css">
161 <link rel="stylesheet" href="options/browser_options_page.css"> 162 <link rel="stylesheet" href="options/browser_options_page.css">
162 <link rel="stylesheet" href="options/clear_browser_data_overlay.css"> 163 <link rel="stylesheet" href="options/clear_browser_data_overlay.css">
163 <link rel="stylesheet" href="options/content_settings_exceptions_area.css"> 164 <link rel="stylesheet" href="options/content_settings_exceptions_area.css">
164 <link rel="stylesheet" href="options/import_data_overlay.css"> 165 <link rel="stylesheet" href="options/import_data_overlay.css">
165 <link rel="stylesheet" href="options/subpages_tab_controls.css"> 166 <link rel="stylesheet" href="options/subpages_tab_controls.css">
166 <if expr="pp_ifdef('chromeos')"> 167 <if expr="pp_ifdef('chromeos')">
167 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css"> 168 <link rel="stylesheet" href="options/chromeos_accounts_options_page.css">
168 <link rel="stylesheet" href="options/chromeos_internet_options_page.css"> 169 <link rel="stylesheet" href="options/chromeos_internet_options_page.css">
169 <link rel="stylesheet" href="options/chromeos_language_options.css"> 170 <link rel="stylesheet" href="options/chromeos_language_options.css">
170 </if> 171 </if>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 cr.ui.decorate('input[pref][type=number]', options.PrefNumber); 222 cr.ui.decorate('input[pref][type=number]', options.PrefNumber);
222 cr.ui.decorate('input[pref][type=radio]', options.PrefRadio); 223 cr.ui.decorate('input[pref][type=radio]', options.PrefRadio);
223 cr.ui.decorate('input[pref][type=range]', options.PrefRange); 224 cr.ui.decorate('input[pref][type=range]', options.PrefRange);
224 cr.ui.decorate('select[pref]', options.PrefSelect); 225 cr.ui.decorate('select[pref]', options.PrefSelect);
225 cr.ui.decorate('input[pref][type=url]', options.PrefTextField); 226 cr.ui.decorate('input[pref][type=url]', options.PrefTextField);
226 cr.ui.decorate('#contentSettingsPage input[type=radio]', 227 cr.ui.decorate('#contentSettingsPage input[type=radio]',
227 options.ContentSettingsRadio); 228 options.ContentSettingsRadio);
228 </script> 229 </script>
229 </body> 230 </body>
230 </html> 231 </html>
OLDNEW
« no previous file with comments | « chrome/browser/dom_ui/autofill_options_handler.cc ('k') | chrome/browser/resources/options/autofill_options.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698