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

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

Issue 2738063008: WebUI: Polymer config tweaks for better performance. (Closed)
Patch Set: Rebase Created 3 years, 9 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/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 5 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
6 <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/iron-flex-layout/iron-f lex-layout-classes.html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 7 <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/paper-button/paper-butt on.html"> 8 <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-icon-button/paper -icon-button-light.html"> 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html"> 10 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo g.html">
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 class="more-actions"> 104 class="more-actions">
105 $i18n{restart} 105 $i18n{restart}
106 </paper-button> 106 </paper-button>
107 </template> 107 </template>
108 </settings-toggle-button> 108 </settings-toggle-button>
109 </div> 109 </div>
110 </if><!-- not chromeos --> 110 </if><!-- not chromeos -->
111 </if><!-- _google_chrome --> 111 </if><!-- _google_chrome -->
112 <div class="settings-box"> 112 <div class="settings-box">
113 <template id="doNotTrackDialogIf" is="dom-if" 113 <template id="doNotTrackDialogIf" is="dom-if"
114 if="[[showDoNotTrackDialog_]]"> 114 if="[[showDoNotTrackDialog_]]" notify-dom-change>
115 <dialog is="cr-dialog" id="confirmDoNotTrackDialog" 115 <dialog is="cr-dialog" id="confirmDoNotTrackDialog"
116 close-text="$i18n{close}" on-cancel="onDoNotTrackDialogCancel_"> 116 close-text="$i18n{close}" on-cancel="onDoNotTrackDialogCancel_">
117 <div class="title">$i18n{doNotTrackDialogTitle}</div> 117 <div class="title">$i18n{doNotTrackDialogTitle}</div>
118 <div class="body">$i18nRaw{doNotTrackDialogMessage}</div> 118 <div class="body">$i18nRaw{doNotTrackDialogMessage}</div>
119 <div class="button-container"> 119 <div class="button-container">
120 <paper-button class="cancel-button" 120 <paper-button class="cancel-button"
121 on-tap="onDoNotTrackDialogCancel_"> 121 on-tap="onDoNotTrackDialogCancel_">
122 $i18n{cancel} 122 $i18n{cancel}
123 </paper-button> 123 </paper-button>
124 <paper-button class="action-button" 124 <paper-button class="action-button"
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> 472 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}">
473 </category-setting-exceptions> 473 </category-setting-exceptions>
474 </template> 474 </template>
475 </if> 475 </if>
476 </settings-subpage> 476 </settings-subpage>
477 </template> 477 </template>
478 </settings-animated-pages> 478 </settings-animated-pages>
479 </template> 479 </template>
480 <script src="privacy_page.js"></script> 480 <script src="privacy_page.js"></script>
481 </dom-module> 481 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698