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

Side by Side Diff: chrome/browser/resources/settings/privacy_page/privacy_page.html

Issue 2201243002: [MD settings] layout of site details permissions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed label Created 4 years, 4 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/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html"> 5 <link rel="import" href="/clear_browsing_data_dialog/clear_browsing_data_dialog. html">
6 <link rel="import" href="/controls/settings_checkbox.html"> 6 <link rel="import" href="/controls/settings_checkbox.html">
7 <link rel="import" href="/route.html"> 7 <link rel="import" href="/route.html">
8 <link rel="import" href="/settings_page/settings_animated_pages.html"> 8 <link rel="import" href="/settings_page/settings_animated_pages.html">
9 <link rel="import" href="/settings_page/settings_subpage.html"> 9 <link rel="import" href="/settings_page/settings_subpage.html">
10 <link rel="import" href="/settings_shared_css.html"> 10 <link rel="import" href="/settings_shared_css.html">
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 <site-settings-category 259 <site-settings-category
260 selected-site="{{selectedSite}}" 260 selected-site="{{selectedSite}}"
261 current-route="{{currentRoute}}" 261 current-route="{{currentRoute}}"
262 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}"> 262 category="{{ContentSettingsTypes.UNSANDBOXED_PLUGINS}}">
263 </site-settings-category> 263 </site-settings-category>
264 </settings-subpage> 264 </settings-subpage>
265 </template> 265 </template>
266 266
267 <template is="dom-if" name="site-details"> 267 <template is="dom-if" name="site-details">
268 <settings-subpage 268 <settings-subpage
269 page-title="$i18n{siteSettingsSiteDetailsPageTitle}"> 269 page-title="[[selectedSite.originForDisplay]]">
tommycli 2016/08/04 01:41:02 Can we just axe the i18n string from settings_stri
dschuyler 2016/08/04 20:03:52 Good call, I'd meant to do that. Done.
270 <site-details site="[[selectedSite]]"></site-details> 270 <site-details site="[[selectedSite]]"></site-details>
271 </settings-subpage> 271 </settings-subpage>
272 </template> 272 </template>
273 </settings-animated-pages> 273 </settings-animated-pages>
274 </template> 274 </template>
275 <script src="privacy_page.js"></script> 275 <script src="privacy_page.js"></script>
276 </dom-module> 276 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698