| 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://md-settings/about_page/about_page_browser_prox
y.html"> | 2 <link rel="import" href="chrome://md-settings/about_page/about_page_browser_prox
y.html"> |
| 3 <link rel="import" href="chrome://md-settings/i18n_setup.html"> | 3 <link rel="import" href="chrome://md-settings/i18n_setup.html"> |
| 4 <link rel="import" href="chrome://md-settings/icons.html"> | 4 <link rel="import" href="chrome://md-settings/icons.html"> |
| 5 <link rel="import" href="chrome://md-settings/settings_page/main_page_behavior.h
tml"> | 5 <link rel="import" href="chrome://md-settings/settings_page/main_page_behavior.h
tml"> |
| 6 <link rel="import" href="chrome://md-settings/settings_page/settings_animated_pa
ges.html"> | 6 <link rel="import" href="chrome://md-settings/settings_page/settings_animated_pa
ges.html"> |
| 7 <link rel="import" href="chrome://md-settings/settings_page/settings_section.htm
l"> | 7 <link rel="import" href="chrome://md-settings/settings_page/settings_section.htm
l"> |
| 8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> | 8 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 10 <link rel="import" href="chrome://resources/html/assert.html"> | 10 <link rel="import" href="chrome://resources/html/assert.html"> |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 <div class="info-section"> | 120 <div class="info-section"> |
| 121 <div class="secondary">$i18nRaw{aboutProductLicense}</div> | 121 <div class="secondary">$i18nRaw{aboutProductLicense}</div> |
| 122 <if expr="chromeos"> | 122 <if expr="chromeos"> |
| 123 <div class="secondary">$i18nRaw{aboutProductOsLicense}</div> | 123 <div class="secondary">$i18nRaw{aboutProductOsLicense}</div> |
| 124 </if> | 124 </if> |
| 125 </div> | 125 </div> |
| 126 <if expr="_google_chrome"> | 126 <if expr="_google_chrome"> |
| 127 <div class="secondary">$i18nRaw{aboutProductTos}</div> | 127 <div class="secondary">$i18nRaw{aboutProductTos}</div> |
| 128 </if> | 128 </if> |
| 129 </div> | 129 </div> |
| 130 <if expr="chromeos"> |
| 131 <div class="settings-box product-info" id="regulatoryInfo" |
| 132 hidden$="[[!shouldShowRegulatoryInfo_(regulatoryInfo_)]]"> |
| 133 <img src="[[regulatoryInfo_.url]]" alt="[[regulatoryInfo_.text]]"> |
| 134 </div> |
| 135 </if> |
| 130 </neon-animatable> | 136 </neon-animatable> |
| 131 <if expr="chromeos"> | 137 <if expr="chromeos"> |
| 132 <template is="dom-if" name="detailed-build-info"> | 138 <template is="dom-if" name="detailed-build-info"> |
| 133 <settings-subpage page-title="Detailed build information"> | 139 <settings-subpage page-title="Detailed build information"> |
| 134 <settings-detailed-build-info></settings-detailed-build-info> | 140 <settings-detailed-build-info></settings-detailed-build-info> |
| 135 </settings-subpage> | 141 </settings-subpage> |
| 136 </template> | 142 </template> |
| 137 </if> | 143 </if> |
| 138 </settings-animated-pages> | 144 </settings-animated-pages> |
| 139 </settings-section> | 145 </settings-section> |
| 140 </template> | 146 </template> |
| 141 <script src="about_page.js"></script> | 147 <script src="about_page.js"></script> |
| 142 </dom-module> | 148 </dom-module> |
| OLD | NEW |