Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> | |
| 2 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | |
|
michaelpg
2016/10/03 23:44:45
import paper-button
fukino
2016/10/04 09:03:53
Done.
| |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 4 <link rel="import" href="/settings_shared_css.html"> | |
| 5 | |
| 6 <dom-module id="settings-drive-cache-dialog"> | |
| 7 <template> | |
| 8 <style include="settings-shared"> | |
| 9 #dialog { | |
| 10 width: 512px; | |
| 11 } | |
| 12 </style> | |
| 13 <dialog is="cr-dialog" id="dialog"> | |
| 14 <div class="title">$i18n{storageClearDriveCacheDialogTitle}</div> | |
| 15 <div class="body"> | |
| 16 <span>$i18n{storageClearDriveCacheDialogDescription}</span> | |
| 17 </div> | |
| 18 <div class="button-container"> | |
| 19 <paper-button id="cancelButton" class="cancel-button" | |
| 20 on-tap="onCancelTap_"> | |
| 21 $i18n{cancel} | |
| 22 </paper-button> | |
| 23 <paper-button id="deleteButton" class="action-button" | |
| 24 on-tap="onDeleteTap_"> | |
| 25 $i18n{storageDeleteAllButtonTitle} | |
| 26 </paper-button> | |
| 27 </div> | |
| 28 </dialog> | |
| 29 </template> | |
| 30 <script src="/device_page/drive_cache_dialog.js"></script> | |
| 31 </dom-module> | |
| OLD | NEW |