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

Unified Diff: chrome/browser/resources/settings/clear_browsing_data_dialog/other_forms_of_browsing_history_notice.html

Issue 2098633002: Migrate the one-time notice into the MD settings CBD dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_counters
Patch Set: Created 4 years, 6 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/settings/clear_browsing_data_dialog/other_forms_of_browsing_history_notice.html
diff --git a/chrome/browser/resources/settings/clear_browsing_data_dialog/other_forms_of_browsing_history_notice.html b/chrome/browser/resources/settings/clear_browsing_data_dialog/other_forms_of_browsing_history_notice.html
new file mode 100644
index 0000000000000000000000000000000000000000..69a26bea581af9d82434a17a82028a7cd694c3f4
--- /dev/null
+++ b/chrome/browser/resources/settings/clear_browsing_data_dialog/other_forms_of_browsing_history_notice.html
@@ -0,0 +1,30 @@
+<link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html">
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="/i18n_setup.html">
+<link rel="import" href="/settings_shared_css.html">
+
+<dom-module id="settings-other-forms-of-browsing-history-notice">
+ <template>
+ <style include="settings-shared">
+ #dialog {
+ max-width: 500px;
+ }
+
+ #dialog .body {
+ margin-bottom: 50px;
+ }
+ </style>
+
+ <cr-dialog id="dialog">
+ <div class="title">$i18n{clearBrowsingDataHistoryNoticeTitle}</div>
+ <div class="body">$i18nRaw{clearBrowsingDataHistoryNotice}</div>
+ <div class="button-container">
+ <paper-button class="action-button" on-tap="onOkTap_">
+ $i18n{clearBrowsingDataHistoryNoticeOk}
+ </paper-button>
+ </div>
+ </cr-dialog>
+ </template>
+ <script src="other_forms_of_browsing_history_notice.js"></script>
+</dom-module>
+

Powered by Google App Engine
This is Rietveld 408576698