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

Side by Side Diff: chrome/browser/resources/settings/site_settings/site_details.html

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: resolve more conflicts Created 3 years, 10 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"> 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="/site_settings/constants.html"> 10 <link rel="import" href="constants.html">
11 <link rel="import" href="/site_settings/site_details_permission.html"> 11 <link rel="import" href="site_details_permission.html">
12 <link rel="import" href="/site_settings/site_settings_behavior.html"> 12 <link rel="import" href="site_settings_behavior.html">
13 <link rel="import" href="/site_settings/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;
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698