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

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

Issue 12330137: Allow normal users to change per session flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix include for a moved file. Created 7 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/flags.css ('k') | chrome/browser/resources/flags_warning.html » ('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;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <if expr="pp_ifdef('android')"> 5 <if expr="pp_ifdef('android')">
6 <meta name="viewport" content="width=device-width, user-scalable=no"> 6 <meta name="viewport" content="width=device-width, user-scalable=no">
7 </if> 7 </if>
8 <link rel="stylesheet" href="flags.css"> 8 <link rel="stylesheet" href="flags.css">
9 <script src="chrome://resources/js/load_time_data.js"></script> 9 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="chrome://resources/js/util.js"></script> 10 <script src="chrome://resources/js/util.js"></script>
11 <script src="chrome://flags/flags.js"></script> 11 <script src="chrome://flags/flags.js"></script>
12 <script src="chrome://flags/strings.js"></script> 12 <script src="chrome://flags/strings.js"></script>
13 </head> 13 </head>
14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 14 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
15 <div id="body-container" style="visibility:hidden"> 15 <div id="body-container" style="visibility:hidden">
16 16
17 <div id="header"> 17 <div id="header">
18 <div id="title-spacer"><h1 i18n-content="flagsLongTitle"></h1></div> 18 <div id="title-spacer"><h1 i18n-content="flagsLongTitle"></h1></div>
19 </div> 19 </div>
20 20
21 <div id="blurb-container"> 21 <div class="blurb-container">
22 <span id="blurb-warning" i18n-content="flagsWarningHeader">WARNING</span> 22 <span id="blurb-warning" i18n-content="flagsWarningHeader">WARNING</span>
23 <span i18n-content="flagsBlurb">WARNING TEXT</span> 23 <span i18n-content="flagsBlurb">WARNING TEXT</span>
24 </div> 24 </div>
25 25
26 <div class="blurb-container">
27 <span i18n-content="ownerWarning"></span>
28 </div>
29
26 <div id="flagsExperimentTemplate"> 30 <div id="flagsExperimentTemplate">
27 31
28 <div id="container" class="vbox-container"> 32 <div id="container" class="vbox-container">
29 <div id="top" class="wbox"> 33 <div id="top" class="wbox">
30 34
31 <div class="section-header"> 35 <div class="section-header">
32 <table cellpadding="0" cellspacing="0"><tr valign="center"> 36 <table cellpadding="0" cellspacing="0"><tr valign="center">
33 <td> 37 <td>
34 <span class="section-header-title" i18n-content="flagsTableTitle" 38 <span class="section-header-title" i18n-content="flagsTableTitle"
35 >TITLE</span> 39 >TITLE</span>
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 type="button" 116 type="button"
113 i18n-content="flagsRestartButton">RESTART</button> 117 i18n-content="flagsRestartButton">RESTART</button>
114 </div> 118 </div>
115 </div> 119 </div>
116 </div> 120 </div>
117 </div> 121 </div>
118 <script src="chrome://resources/js/i18n_template2.js"></script> 122 <script src="chrome://resources/js/i18n_template2.js"></script>
119 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 123 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
120 </body> 124 </body>
121 </html> 125 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/flags.css ('k') | chrome/browser/resources/flags_warning.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698