| 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/policy/cr_policy_vars_cs
s.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_vars_cs
s.html"> |
| 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> | 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout-classes.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
matable.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 8 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo
g.html"> | 8 <link rel="import" href="../clear_browsing_data_dialog/clear_browsing_data_dialo
g.html"> |
| 9 <link rel="import" href="../controls/settings_toggle_button.html"> | 9 <link rel="import" href="../controls/settings_toggle_button.html"> |
| 10 <link rel="import" href="../lifetime_browser_proxy.html"> | 10 <link rel="import" href="../lifetime_browser_proxy.html"> |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 </if><!-- chromeos --> | 105 </if><!-- chromeos --> |
| 106 <if expr="not chromeos"> | 106 <if expr="not chromeos"> |
| 107 <div class="settings-box"> | 107 <div class="settings-box"> |
| 108 <div class="start">$i18n{enableLogging}</div> | 108 <div class="start">$i18n{enableLogging}</div> |
| 109 <template is="dom-if" if="[[showRestart_]]" restamp> | 109 <template is="dom-if" if="[[showRestart_]]" restamp> |
| 110 <paper-button on-tap="onRestartTap_" id="restart"> | 110 <paper-button on-tap="onRestartTap_" id="restart"> |
| 111 $i18n{restart} | 111 $i18n{restart} |
| 112 </paper-button> | 112 </paper-button> |
| 113 </template> | 113 </template> |
| 114 <template is="dom-if" if="[[metricsReporting_.managed]]" restamp> | 114 <template is="dom-if" if="[[metricsReporting_.managed]]" restamp> |
| 115 <iron-icon id="indicator" tabindex=0 icon="cr:domain"></iron-icon> | 115 <iron-icon id="indicator" tabindex=0 icon="cr20:domain"></iron-icon> |
| 116 <paper-tooltip for="indicator" position="top" | 116 <paper-tooltip for="indicator" position="top" |
| 117 fit-to-visible-bounds> | 117 fit-to-visible-bounds> |
| 118 $i18n{controlledSettingPolicy} | 118 $i18n{controlledSettingPolicy} |
| 119 </paper-tooltip> | 119 </paper-tooltip> |
| 120 </template> | 120 </template> |
| 121 <paper-toggle-button id="metricsReportingControl" | 121 <paper-toggle-button id="metricsReportingControl" |
| 122 on-tap="onMetricsReportingControlTap_" | 122 on-tap="onMetricsReportingControlTap_" |
| 123 checked="[[metricsReporting_.enabled]]" | 123 checked="[[metricsReporting_.enabled]]" |
| 124 disabled="[[metricsReporting_.managed]]"> | 124 disabled="[[metricsReporting_.managed]]"> |
| 125 </paper-toggle-button> | 125 </paper-toggle-button> |
| (...skipping 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 <category-setting-exceptions | 435 <category-setting-exceptions |
| 436 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> | 436 category="{{ContentSettingsTypes.PROTECTED_CONTENT}}"> |
| 437 </category-setting-exceptions> | 437 </category-setting-exceptions> |
| 438 </if> | 438 </if> |
| 439 </settings-subpage> | 439 </settings-subpage> |
| 440 </template> | 440 </template> |
| 441 </settings-animated-pages> | 441 </settings-animated-pages> |
| 442 </template> | 442 </template> |
| 443 <script src="privacy_page.js"></script> | 443 <script src="privacy_page.js"></script> |
| 444 </dom-module> | 444 </dom-module> |
| OLD | NEW |