Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 Loading... | |
| 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> |
|
Dan Beam
2017/03/15 19:49:31
stevenjb
| |
| 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 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 473 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> | 473 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> |
| 474 </category-setting-exceptions> | 474 </category-setting-exceptions> |
| 475 </template> | 475 </template> |
| 476 </if> | 476 </if> |
| 477 </settings-subpage> | 477 </settings-subpage> |
| 478 </template> | 478 </template> |
| 479 </settings-animated-pages> | 479 </settings-animated-pages> |
| 480 </template> | 480 </template> |
| 481 <script src="privacy_page.js"></script> | 481 <script src="privacy_page.js"></script> |
| 482 </dom-module> | 482 </dom-module> |
| OLD | NEW |