| 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>
|
| +
|
|
|