| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/html/action_link.html"> | 2 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 3 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 3 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 4 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> | 4 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 5 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 8 <link rel="import" href="../route.html"> | 8 <link rel="import" href="../route.html"> |
| 9 <link rel="import" href="../settings_shared_css.html"> | 9 <link rel="import" href="../settings_shared_css.html"> |
| 10 <link rel="import" href="constants.html"> | 10 <link rel="import" href="constants.html"> |
| 11 <link rel="import" href="site_details_permission.html"> | 11 <link rel="import" href="site_details_permission.html"> |
| 12 <link rel="import" href="site_settings_behavior.html"> | 12 <link rel="import" href="site_settings_behavior.html"> |
| 13 <link rel="import" href="website_usage_private_api.html"> | 13 <link rel="import" href="website_usage_private_api.html"> |
| 14 | 14 |
| 15 <dom-module id="site-details"> | 15 <dom-module id="site-details"> |
| 16 <template> | 16 <template> |
| 17 <style include="settings-shared action-link"> | 17 <style include="settings-shared action-link"> |
| 18 .favicon-image { | 18 .favicon-image { |
| 19 margin: 2px; | 19 margin: 2px; |
| 20 } | 20 } |
| 21 | 21 |
| 22 #storage { | 22 #storage { |
| 23 -webkit-padding-end: 0; | 23 -webkit-padding-end: 0; |
| 24 } | 24 } |
| 25 </style> | 25 </style> |
| 26 <!-- Confirm Delete dialog --> | 26 <!-- Confirm Delete dialog --> |
| 27 <dialog is="cr-dialog" id="confirmDeleteDialog"> | 27 <dialog is="cr-dialog" id="confirmDeleteDialog" close-text="$i18n{close}"> |
| 28 <div class="title">$i18n{siteSettingsSiteRemoveDialogTitle}</div> | 28 <div class="title">$i18n{siteSettingsSiteRemoveDialogTitle}</div> |
| 29 <div class="body">[[confirmationDeleteMsg_]]</div> | 29 <div class="body">[[confirmationDeleteMsg_]]</div> |
| 30 <div class="button-container"> | 30 <div class="button-container"> |
| 31 <paper-button class="cancel-button" on-tap="onCloseDialog_"> | 31 <paper-button class="cancel-button" on-tap="onCloseDialog_"> |
| 32 $i18n{cancel} | 32 $i18n{cancel} |
| 33 </paper-button> | 33 </paper-button> |
| 34 <paper-button class="action-button" on-tap="onClearStorage_"> | 34 <paper-button class="action-button" on-tap="onClearStorage_"> |
| 35 $i18n{siteSettingsSiteClearAll} | 35 $i18n{siteSettingsSiteClearAll} |
| 36 </paper-button> | 36 </paper-button> |
| 37 </div> | 37 </div> |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 </a> | 116 </a> |
| 117 </div> | 117 </div> |
| 118 </div> | 118 </div> |
| 119 <website-usage-private-api id="usageApi" | 119 <website-usage-private-api id="usageApi" |
| 120 website-data-usage="{{storedData_}}" | 120 website-data-usage="{{storedData_}}" |
| 121 website-storage-type="{{storageType_}}"> | 121 website-storage-type="{{storageType_}}"> |
| 122 </website-usage-private-api> | 122 </website-usage-private-api> |
| 123 </template> | 123 </template> |
| 124 <script src="site_details.js"></script> | 124 <script src="site_details.js"></script> |
| 125 </dom-module> | 125 </dom-module> |
| OLD | NEW |