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

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

Issue 2639373002: MD Settings: clean up text controls (links, buttons) (Closed)
Patch Set: add bug link to clarify comment Created 3 years, 11 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/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/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html">
6 <link rel="import" href="/route.html"> 6 <link rel="import" href="/route.html">
7 <link rel="import" href="/settings_shared_css.html"> 7 <link rel="import" href="/settings_shared_css.html">
8 <link rel="import" href="/site_settings/constants.html"> 8 <link rel="import" href="/site_settings/constants.html">
9 <link rel="import" href="/site_settings/site_details_permission.html"> 9 <link rel="import" href="/site_settings/site_details_permission.html">
10 <link rel="import" href="/site_settings/site_settings_behavior.html"> 10 <link rel="import" href="/site_settings/site_settings_behavior.html">
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 category="{{ContentSettingsTypes.AUTOMATIC_DOWNLOADS}}" 101 category="{{ContentSettingsTypes.AUTOMATIC_DOWNLOADS}}"
102 icon="cr:file-download" id="automaticDownloads" 102 icon="cr:file-download" id="automaticDownloads"
103 label="$i18n{siteSettingsAutomaticDownloads}" site="[[site]]"> 103 label="$i18n{siteSettingsAutomaticDownloads}" site="[[site]]">
104 </site-details-permission> 104 </site-details-permission>
105 <site-details-permission 105 <site-details-permission
106 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}" 106 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}"
107 icon="cr:extension" id="unsandboxedPlugins" 107 icon="cr:extension" id="unsandboxedPlugins"
108 label="$i18n{siteSettingsUnsandboxedPlugins}" site="[[site]]"> 108 label="$i18n{siteSettingsUnsandboxedPlugins}" site="[[site]]">
109 </site-details-permission> 109 </site-details-permission>
110 110
111 <div on-tap="onClearAndReset_" raised class="list-item list-button"> 111 <div raised class="list-item">
112 $i18n{siteSettingsClearAndReset} 112 <a is="action-link" class="list-button" on-tap="onClearAndReset_" >
113 $i18n{siteSettingsClearAndReset}
114 </a>
113 </div> 115 </div>
114 </div> 116 </div>
115 <website-usage-private-api id="usageApi" 117 <website-usage-private-api id="usageApi"
116 website-data-usage="{{storedData_}}" 118 website-data-usage="{{storedData_}}"
117 website-storage-type="{{storageType_}}"> 119 website-storage-type="{{storageType_}}">
118 </website-usage-private-api> 120 </website-usage-private-api>
119 </template> 121 </template>
120 <script src="site_details.js"></script> 122 <script src="site_details.js"></script>
121 </dom-module> 123 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698