| 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/cr_elements/cr_dialog/cr_dialog.html
"> | 2 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html
"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 7 <link rel="import" href="/settings_page/settings_subpage_search.html"> | 6 <link rel="import" href="/settings_page/settings_subpage_search.html"> |
| 8 <link rel="import" href="/settings_shared_css.html"> | 7 <link rel="import" href="/settings_shared_css.html"> |
| 8 <link rel="import" href="/site_settings/cookie_tree_behavior.html"> |
| 9 <link rel="import" href="/site_settings/site_data_details_dialog.html"> | 9 <link rel="import" href="/site_settings/site_data_details_dialog.html"> |
| 10 <link rel="import" href="/site_settings/site_settings_behavior.html"> | 10 <link rel="import" href="/site_settings/site_settings_behavior.html"> |
| 11 | 11 |
| 12 <dom-module id="site-data"> | 12 <dom-module id="site-data"> |
| 13 <template> | 13 <template> |
| 14 <style include="settings-shared"> | 14 <style include="settings-shared"> |
| 15 .secondary-button { | 15 .secondary-button { |
| 16 margin-top: 12px; /* Align with <h2>. */ | 16 margin-top: 12px; /* Align with <h2>. */ |
| 17 } | 17 } |
| 18 </style> | 18 </style> |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 <paper-button class="action-button" on-tap="onConfirmDelete_"> | 54 <paper-button class="action-button" on-tap="onConfirmDelete_"> |
| 55 $i18n{siteSettingsCookiesClearAll} | 55 $i18n{siteSettingsCookiesClearAll} |
| 56 </paper-button> | 56 </paper-button> |
| 57 </div> | 57 </div> |
| 58 </dialog> | 58 </dialog> |
| 59 </template> | 59 </template> |
| 60 <script src="cookie_info.js"></script> | 60 <script src="cookie_info.js"></script> |
| 61 <script src="cookie_tree_node.js"></script> | 61 <script src="cookie_tree_node.js"></script> |
| 62 <script src="site_data.js"></script> | 62 <script src="site_data.js"></script> |
| 63 </dom-module> | 63 </dom-module> |
| OLD | NEW |