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

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

Issue 2006073002: MD Settings: About page, show regulatory info, if available. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@about_copyright
Patch Set: Address comment. Created 4 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/about_page/about_page.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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://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
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>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/about_page/about_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698