| 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="about_page_browser_proxy.html"> | 2 <link rel="import" href="about_page_browser_proxy.html"> |
| 3 <link rel="import" href="../i18n_setup.html"> | 3 <link rel="import" href="../i18n_setup.html"> |
| 4 <link rel="import" href="../icons.html"> | 4 <link rel="import" href="../icons.html"> |
| 5 <link rel="import" href="../lifetime_browser_proxy.html"> | 5 <link rel="import" href="../lifetime_browser_proxy.html"> |
| 6 <link rel="import" href="../route.html"> | 6 <link rel="import" href="../route.html"> |
| 7 <link rel="import" href="../settings_page/main_page_behavior.html"> | 7 <link rel="import" href="../settings_page/main_page_behavior.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_section.html"> | 9 <link rel="import" href="../settings_page/settings_section.html"> |
| 10 <link rel="import" href="../settings_page_css.html"> | 10 <link rel="import" href="../settings_page_css.html"> |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 } | 78 } |
| 79 | 79 |
| 80 <if expr="_google_chrome and is_macosx"> | 80 <if expr="_google_chrome and is_macosx"> |
| 81 #promoteUpdater[disabled] { | 81 #promoteUpdater[disabled] { |
| 82 @apply(--settings-secondary); | 82 @apply(--settings-secondary); |
| 83 } | 83 } |
| 84 </if> | 84 </if> |
| 85 </style> | 85 </style> |
| 86 <div> | 86 <div> |
| 87 <settings-section page-title="$i18n{aboutPageTitle}" section="about"> | 87 <settings-section page-title="$i18n{aboutPageTitle}" section="about"> |
| 88 <settings-animated-pages id="pages" section="about"> | 88 <settings-animated-pages id="pages" section="about" |
| 89 focus-config="[[focusConfig_]]"> |
| 89 <neon-animatable route-path="default"> | 90 <neon-animatable route-path="default"> |
| 90 <div class="settings-box two-line"> | 91 <div class="settings-box two-line"> |
| 91 <img id="product-logo" on-tap="onProductLogoTap_" | 92 <img id="product-logo" on-tap="onProductLogoTap_" |
| 92 srcset="chrome://theme/current-channel-logo@1x 1x, | 93 srcset="chrome://theme/current-channel-logo@1x 1x, |
| 93 chrome://theme/current-channel-logo@2x 2x" | 94 chrome://theme/current-channel-logo@2x 2x" |
| 94 alt="$i18n{aboutProductLogoAlt}"> | 95 alt="$i18n{aboutProductLogoAlt}"> |
| 95 <span class="product-title">$i18n{aboutProductTitle}</span> | 96 <span class="product-title">$i18n{aboutProductTitle}</span> |
| 96 </div> | 97 </div> |
| 97 <div class="settings-box two-line"> | 98 <div class="settings-box two-line"> |
| 98 <!-- TODO(dpapad): Investigate why vulcanize does not handle well | 99 <!-- TODO(dpapad): Investigate why vulcanize does not handle well |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 on-tap="onReportIssueTap_"> | 176 on-tap="onReportIssueTap_"> |
| 176 <div class="start">$i18n{aboutReportAnIssue}</div> | 177 <div class="start">$i18n{aboutReportAnIssue}</div> |
| 177 <button class="subpage-arrow" is="paper-icon-button-light" | 178 <button class="subpage-arrow" is="paper-icon-button-light" |
| 178 aria-labelledby="reportIssue"></button> | 179 aria-labelledby="reportIssue"></button> |
| 179 </div> | 180 </div> |
| 180 </if> | 181 </if> |
| 181 <if expr="chromeos"> | 182 <if expr="chromeos"> |
| 182 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" | 183 <div class="settings-box" on-tap="onDetailedBuildInfoTap_" |
| 183 actionable> | 184 actionable> |
| 184 <div class="start">$i18n{aboutDetailedBuildInfo}</div> | 185 <div class="start">$i18n{aboutDetailedBuildInfo}</div> |
| 185 <button class="subpage-arrow" is="paper-icon-button-light" | 186 <button id="detailed-build-info-trigger" class="subpage-arrow" |
| 187 is="paper-icon-button-light" |
| 186 aria-label="$i18n{aboutDetailedBuildInfo}"> | 188 aria-label="$i18n{aboutDetailedBuildInfo}"> |
| 187 </button> | 189 </button> |
| 188 </div> | 190 </div> |
| 189 </if> | 191 </if> |
| 190 <div class="settings-box padded block copyable"> | 192 <div class="settings-box padded block copyable"> |
| 191 <div class="info-section"> | 193 <div class="info-section"> |
| 192 <div class="secondary">$i18n{aboutProductTitle}</div> | 194 <div class="secondary">$i18n{aboutProductTitle}</div> |
| 193 <div class="secondary">$i18n{aboutProductCopyright}</div> | 195 <div class="secondary">$i18n{aboutProductCopyright}</div> |
| 194 </div> | 196 </div> |
| 195 | 197 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 216 <settings-detailed-build-info></settings-detailed-build-info> | 218 <settings-detailed-build-info></settings-detailed-build-info> |
| 217 </settings-subpage> | 219 </settings-subpage> |
| 218 </template> | 220 </template> |
| 219 </if> | 221 </if> |
| 220 </settings-animated-pages> | 222 </settings-animated-pages> |
| 221 </settings-section> | 223 </settings-section> |
| 222 </div> | 224 </div> |
| 223 </template> | 225 </template> |
| 224 <script src="about_page.js"></script> | 226 <script src="about_page.js"></script> |
| 225 </dom-module> | 227 </dom-module> |
| OLD | NEW |