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

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

Issue 3386009: Fix a problem that text prefs is not hooked up with CrosSettings. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: fix missing Get calls by bumping up the limit Created 10 years, 3 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
« no previous file with comments | « no previous file | webkit/glue/cpp_variant.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <link rel="stylesheet" href="chrome://resources/css/list.css"> 9 <link rel="stylesheet" href="chrome://resources/css/list.css">
10 <link rel="stylesheet" href="chrome://resources/css/tree.css"> 10 <link rel="stylesheet" href="chrome://resources/css/tree.css">
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 </div> 282 </div>
283 </div> 283 </div>
284 284
285 <script> 285 <script>
286 // Decorate the existing elements in the document. 286 // Decorate the existing elements in the document.
287 cr.ui.decorate('input[pref][type=checkbox]', options.PrefCheckbox); 287 cr.ui.decorate('input[pref][type=checkbox]', options.PrefCheckbox);
288 cr.ui.decorate('input[pref][type=number]', options.PrefNumber); 288 cr.ui.decorate('input[pref][type=number]', options.PrefNumber);
289 cr.ui.decorate('input[pref][type=radio]', options.PrefRadio); 289 cr.ui.decorate('input[pref][type=radio]', options.PrefRadio);
290 cr.ui.decorate('input[pref][type=range]', options.PrefRange); 290 cr.ui.decorate('input[pref][type=range]', options.PrefRange);
291 cr.ui.decorate('select[pref]', options.PrefSelect); 291 cr.ui.decorate('select[pref]', options.PrefSelect);
292 cr.ui.decorate('input[pref][type=text]', options.PrefTextField);
292 cr.ui.decorate('input[pref][type=url]', options.PrefTextField); 293 cr.ui.decorate('input[pref][type=url]', options.PrefTextField);
293 cr.ui.decorate('#contentSettingsPage input[type=radio]', 294 cr.ui.decorate('#contentSettingsPage input[type=radio]',
294 options.ContentSettingsRadio); 295 options.ContentSettingsRadio);
295 console.log('in bottom script'); 296 console.log('in bottom script');
296 </script> 297 </script>
297 </body> 298 </body>
298 </html> 299 </html>
OLDNEW
« no previous file with comments | « no previous file | webkit/glue/cpp_variant.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698