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

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

Issue 2693113002: Revert of WebUI: Vulcanize MD Settings at compile time. (Closed)
Patch Set: 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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 <settings-section page-title="$i18n{aboutPageTitle}" section="about"> 84 <settings-section page-title="$i18n{aboutPageTitle}" section="about">
85 <settings-animated-pages id="pages" section="about"> 85 <settings-animated-pages id="pages" section="about">
86 <neon-animatable route-path="default"> 86 <neon-animatable route-path="default">
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 <!-- TODO(dpapad): Investigate why vulcanize does not handle well
95 a new line after "getIconSrc_(", causes incorrect src URL -->
96 <iron-icon 94 <iron-icon
97 hidden="[[!showUpdateStatus_]]" 95 hidden="[[!showUpdateStatus_]]"
98 icon$="[[getIcon_( 96 icon$="[[getIcon_(
99 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]" 97 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]"
100 src="[[getIconSrc_(obsoleteSystemInfo_, currentUpdateStatusEve nt_)]]"> 98 src="[[getIconSrc_(
99 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]">
101 </iron-icon> 100 </iron-icon>
102 <div class="start"> 101 <div class="start">
103 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" 102 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]"
104 <if expr="not chromeos"> 103 <if expr="not chromeos">
105 inner-h-t-m-l="[[getUpdateStatusMessage_( 104 inner-h-t-m-l="[[getUpdateStatusMessage_(
106 currentUpdateStatusEvent_)]]"> 105 currentUpdateStatusEvent_)]]">
107 </if> 106 </if>
108 <if expr="chromeos"> 107 <if expr="chromeos">
109 inner-h-t-m-l="[[getUpdateStatusMessage_( 108 inner-h-t-m-l="[[getUpdateStatusMessage_(
110 currentUpdateStatusEvent_, targetChannel_)]]"> 109 currentUpdateStatusEvent_, targetChannel_)]]">
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 <settings-detailed-build-info></settings-detailed-build-info> 209 <settings-detailed-build-info></settings-detailed-build-info>
211 </settings-subpage> 210 </settings-subpage>
212 </template> 211 </template>
213 </if> 212 </if>
214 </settings-animated-pages> 213 </settings-animated-pages>
215 </settings-section> 214 </settings-section>
216 </div> 215 </div>
217 </template> 216 </template>
218 <script src="about_page.js"></script> 217 <script src="about_page.js"></script>
219 </dom-module> 218 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/settings/BUILD.gn ('k') | chrome/browser/resources/settings/languages_page/languages_page.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698