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

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

Issue 2573943002: WebUI: Vulcanize MD Settings at compile time. (Closed)
Patch Set: Nit Created 3 years, 10 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
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="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 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 <div class="settings-box two-line"> 87 <div class="settings-box two-line">
88 <img id="product-logo" on-tap="onProductLogoTap_" 88 <img id="product-logo" on-tap="onProductLogoTap_"
89 srcset="chrome://theme/current-channel-logo@1x 1x, 89 srcset="chrome://theme/current-channel-logo@1x 1x,
90 chrome://theme/current-channel-logo@2x 2x" alt=""> 90 chrome://theme/current-channel-logo@2x 2x" alt="">
91 <span class="product-title">$i18n{aboutProductTitle}</span> 91 <span class="product-title">$i18n{aboutProductTitle}</span>
92 </div> 92 </div>
93 <div class="settings-box two-line"> 93 <div class="settings-box two-line">
94 <iron-icon 94 <iron-icon
95 hidden="[[!showUpdateStatus_]]" 95 hidden="[[!showUpdateStatus_]]"
96 icon$="[[getIcon_( 96 icon$="[[getIcon_(
97 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]" 97 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]"
Dan Beam 2017/02/10 23:14:47 can you add a comment about this?
dpapad 2017/02/13 18:53:54 Done.
98 src="[[getIconSrc_( 98 src="[[getIconSrc_(obsoleteSystemInfo_, currentUpdateStatusEve nt_)]]">
99 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]">
100 </iron-icon> 99 </iron-icon>
101 <div class="start"> 100 <div class="start">
102 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" 101 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]"
103 <if expr="not chromeos"> 102 <if expr="not chromeos">
104 inner-h-t-m-l="[[getUpdateStatusMessage_( 103 inner-h-t-m-l="[[getUpdateStatusMessage_(
105 currentUpdateStatusEvent_)]]"> 104 currentUpdateStatusEvent_)]]">
106 </if> 105 </if>
107 <if expr="chromeos"> 106 <if expr="chromeos">
108 inner-h-t-m-l="[[getUpdateStatusMessage_( 107 inner-h-t-m-l="[[getUpdateStatusMessage_(
109 currentUpdateStatusEvent_, targetChannel_)]]"> 108 currentUpdateStatusEvent_, targetChannel_)]]">
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 <settings-detailed-build-info></settings-detailed-build-info> 208 <settings-detailed-build-info></settings-detailed-build-info>
210 </settings-subpage> 209 </settings-subpage>
211 </template> 210 </template>
212 </if> 211 </if>
213 </settings-animated-pages> 212 </settings-animated-pages>
214 </settings-section> 213 </settings-section>
215 </div> 214 </div>
216 </template> 215 </template>
217 <script src="about_page.js"></script> 216 <script src="about_page.js"></script>
218 </dom-module> 217 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698