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

Unified Diff: chrome/browser/resources/options/reset_profile_settings_overlay.html

Issue 23450021: Profile Reset dialog: the new section with detailed feedback information (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed compilation Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/reset_profile_settings_overlay.html
diff --git a/chrome/browser/resources/options/reset_profile_settings_overlay.html b/chrome/browser/resources/options/reset_profile_settings_overlay.html
index 873a6fc92f13e3c3ecb638acf1b708f97bcd7125..e348c818d91fd9ea4cdfee69bcc6f95b90c3a6db 100644
--- a/chrome/browser/resources/options/reset_profile_settings_overlay.html
+++ b/chrome/browser/resources/options/reset_profile_settings_overlay.html
@@ -21,13 +21,25 @@
</div>
</div>
</div>
- <div class="gray-bottom-bar checkbox">
+ <div id="feedback-bar" class="gray-bottom-bar checkbox">
<span class="controlled-setting-with-label">
<input id="send-settings" type="checkbox" checked>
<span>
<label for="send-settings" i18n-content="resetProfileSettingsFeedback">
</label>
+ <div id='expand-feedback'></div>
</span>
</span>
+ <div id="feedback-template" hidden>
+ <div>
+ <table>
+ <tr jsselect="feedbackInfo">
+ <td class="key"><span jscontent="key">KEY</span></td>
+ <td class="value"><span jscontent="value">VALUE</span></td>
+ </tr>
+ </table>
+ </div>
+ </div>
</div>
</div>
+<script src="chrome://resources/js/jstemplate_compiled.js"></script>

Powered by Google App Engine
This is Rietveld 408576698