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

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

Issue 2889493002: [MD settings] removing secondary-button class (Closed)
Patch Set: Created 3 years, 7 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/policy/cr_policy_vars_cs s.html"> 3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs s.html">
4 <link rel="import" href="chrome://resources/html/assert.html"> 4 <link rel="import" href="chrome://resources/html/assert.html">
5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html"> 5 <link rel="import" href="chrome://resources/html/cr/ui/focus_without_ink.html">
6 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 7 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
(...skipping 439 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 <usb-devices></usb-devices> 450 <usb-devices></usb-devices>
451 </settings-subpage> 451 </settings-subpage>
452 </template> 452 </template>
453 <template is="dom-if" route-path="/content/siteDetails" no-search> 453 <template is="dom-if" route-path="/content/siteDetails" no-search>
454 <settings-subpage page-title="$i18n{siteSettingsSiteDetails}"> 454 <settings-subpage page-title="$i18n{siteSettingsSiteDetails}">
455 <site-details></site-details> 455 <site-details></site-details>
456 </settings-subpage> 456 </settings-subpage>
457 </template> 457 </template>
458 <template is="dom-if" route-path="/cookies/detail" no-search> 458 <template is="dom-if" route-path="/cookies/detail" no-search>
459 <settings-subpage page-title="[[pageTitle]]"> 459 <settings-subpage page-title="[[pageTitle]]">
460 <paper-button class="subpage-title-extra secondary-button" 460 <paper-button class="subpage-title-extra"
461 on-tap="onRemoveAllCookiesFromSite_"> 461 on-tap="onRemoveAllCookiesFromSite_">
462 $i18n{siteSettingsCookieRemoveAll} 462 $i18n{siteSettingsCookieRemoveAll}
463 </paper-button> 463 </paper-button>
464 <site-data-details-subpage page-title="{{pageTitle}}"> 464 <site-data-details-subpage page-title="{{pageTitle}}">
465 </site-data-details-subpage> 465 </site-data-details-subpage>
466 </settings-subpage> 466 </settings-subpage>
467 </template> 467 </template>
468 <template is="dom-if" route-path="/content/protectedContent" no-search> 468 <template is="dom-if" route-path="/content/protectedContent" no-search>
469 <settings-subpage page-title="$i18n{siteSettingsProtectedContent}"> 469 <settings-subpage page-title="$i18n{siteSettingsProtectedContent}">
470 <div class="settings-box first"> 470 <div class="settings-box first">
(...skipping 24 matching lines...) Expand all
495 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> 495 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}">
496 </category-setting-exceptions> 496 </category-setting-exceptions>
497 </template> 497 </template>
498 </if> 498 </if>
499 </settings-subpage> 499 </settings-subpage>
500 </template> 500 </template>
501 </settings-animated-pages> 501 </settings-animated-pages>
502 </template> 502 </template>
503 <script src="privacy_page.js"></script> 503 <script src="privacy_page.js"></script>
504 </dom-module> 504 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698