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

Side by Side Diff: chrome/browser/resources/settings/clear_browsing_data_dialog/history_deletion_dialog.html

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html">
2
1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 3 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="../settings_shared_css.html"> 4 <link rel="import" href="../settings_shared_css.html">
4 5
5 <dom-module id="settings-history-deletion-dialog"> 6 <dom-module id="settings-history-deletion-dialog">
6 <template> 7 <template>
7 <style include="settings-shared"></style> 8 <style include="settings-shared"></style>
8 9
9 <dialog is="cr-dialog" id="dialog" close-text="$i18n{close}"> 10 <dialog is="cr-dialog" id="dialog" close-text="$i18n{close}">
10 <div class="title">$i18n{historyDeletionDialogTitle}</div> 11 <div class="title">$i18n{historyDeletionDialogTitle}</div>
11 <div class="body">$i18nRaw{historyDeletionDialogBody}</div> 12 <div class="body">$i18nRaw{historyDeletionDialogBody}</div>
12 <div class="button-container"> 13 <div class="button-container">
13 <paper-button class="action-button" on-tap="onOkTap_"> 14 <paper-button class="action-button" on-tap="onOkTap_">
14 $i18n{historyDeletionDialogOK} 15 $i18n{historyDeletionDialogOK}
15 </paper-button> 16 </paper-button>
16 </div> 17 </div>
17 </dialog> 18 </dialog>
18 </template> 19 </template>
19 <script src="history_deletion_dialog.js"></script> 20 <script src="history_deletion_dialog.js"></script>
20 </dom-module> 21 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698