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

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

Issue 2699063003: MD Settings: fix page to work with vulcanize (when it lands and sticks) (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 -->
94 <iron-icon 96 <iron-icon
95 hidden="[[!showUpdateStatus_]]" 97 hidden="[[!showUpdateStatus_]]"
96 icon$="[[getIcon_( 98 icon$="[[getIcon_(
97 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]" 99 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]"
98 src="[[getIconSrc_( 100 src="[[getIconSrc_(obsoleteSystemInfo_, currentUpdateStatusEve nt_)]]">
99 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]">
100 </iron-icon> 101 </iron-icon>
101 <div class="start"> 102 <div class="start">
102 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" 103 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]"
103 <if expr="not chromeos"> 104 <if expr="not chromeos">
104 inner-h-t-m-l="[[getUpdateStatusMessage_( 105 inner-h-t-m-l="[[getUpdateStatusMessage_(
105 currentUpdateStatusEvent_)]]"> 106 currentUpdateStatusEvent_)]]">
106 </if> 107 </if>
107 <if expr="chromeos"> 108 <if expr="chromeos">
108 inner-h-t-m-l="[[getUpdateStatusMessage_( 109 inner-h-t-m-l="[[getUpdateStatusMessage_(
109 currentUpdateStatusEvent_, targetChannel_)]]"> 110 currentUpdateStatusEvent_, targetChannel_)]]">
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 <settings-detailed-build-info></settings-detailed-build-info> 212 <settings-detailed-build-info></settings-detailed-build-info>
212 </settings-subpage> 213 </settings-subpage>
213 </template> 214 </template>
214 </if> 215 </if>
215 </settings-animated-pages> 216 </settings-animated-pages>
216 </settings-section> 217 </settings-section>
217 </div> 218 </div>
218 </template> 219 </template>
219 <script src="about_page.js"></script> 220 <script src="about_page.js"></script>
220 </dom-module> 221 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698