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

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

Issue 10834194: Change email to be OPT-IN on Chrome and OPT-OUT on cros. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/feedback.js » ('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 <title i18n-content="page-title"></title> 5 <title i18n-content="page-title"></title>
6 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 6 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="feedback.css"> 8 <link rel="stylesheet" href="feedback.css">
9 9
10 <script src="chrome://resources/js/load_time_data.js"></script> 10 <script src="chrome://resources/js/load_time_data.js"></script>
(...skipping 11 matching lines...) Expand all
22 <label> 22 <label>
23 <input id="page-url-checkbox" type="checkbox" 23 <input id="page-url-checkbox" type="checkbox"
24 value="pageurl" checked> 24 value="pageurl" checked>
25 <span id="page-url-label" i18n-content="page-url"></span> 25 <span id="page-url-label" i18n-content="page-url"></span>
26 </label> 26 </label>
27 <input id="page-url-text"> 27 <input id="page-url-text">
28 </div> 28 </div>
29 <!-- User e-mail --> 29 <!-- User e-mail -->
30 <div id="user-email" class="input-text-container checkbox"> 30 <div id="user-email" class="input-text-container checkbox">
31 <label> 31 <label>
32 <input id="user-email-checkbox" type="checkbox" checked> 32 <input id="user-email-checkbox" type="checkbox">
33 <span id="user-email-label" i18n-content="user-email"></span> 33 <span id="user-email-label" i18n-content="user-email"></span>
34 </label> 34 </label>
35 <input id="user-email-text"> 35 <input id="user-email-text">
36 </div> 36 </div>
37 <if expr="pp_ifdef('chromeos')"> 37 <if expr="pp_ifdef('chromeos')">
38 <!-- System Information --> 38 <!-- System Information -->
39 <div class="checkbox"> 39 <div class="checkbox">
40 <label> 40 <label>
41 <input id="sys-info-checkbox" type="checkbox" checked> 41 <input id="sys-info-checkbox" type="checkbox" checked>
42 <span id="sysinfo-label"> 42 <span id="sysinfo-label">
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 <!-- Buttons --> 74 <!-- Buttons -->
75 <input id="send-report-button" type="submit" 75 <input id="send-report-button" type="submit"
76 class="feedback-button" i18n-values="value:send-report"> 76 class="feedback-button" i18n-values="value:send-report">
77 <input id="cancel-button" type="submit" 77 <input id="cancel-button" type="submit"
78 class="feedback-button" i18n-values="value:cancel"> 78 class="feedback-button" i18n-values="value:cancel">
79 </div> 79 </div>
80 </div> 80 </div>
81 <script src="chrome://resources/js/i18n_template2.js"></script> 81 <script src="chrome://resources/js/i18n_template2.js"></script>
82 </body> 82 </body>
83 </html> 83 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/feedback.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698