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

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

Issue 2421753002: MD Settings: Eliminate Relaunch button flicker at chrome://md-settings/help. (Closed)
Patch Set: Fix Polymer missing deps. Created 4 years, 1 month 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="/about_page/about_page_browser_proxy.html"> 2 <link rel="import" href="/about_page/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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 <neon-animatable route-path="default"> 76 <neon-animatable route-path="default">
77 <div class="settings-box two-line"> 77 <div class="settings-box two-line">
78 <img id="product-logo" on-tap="onProductLogoTap_" 78 <img id="product-logo" on-tap="onProductLogoTap_"
79 srcset="chrome://theme/current-channel-logo@1x 1x, 79 srcset="chrome://theme/current-channel-logo@1x 1x,
80 chrome://theme/current-channel-logo@2x 2x" alt=""> 80 chrome://theme/current-channel-logo@2x 2x" alt="">
81 <span class="product-title">$i18n{aboutProductTitle}</span> 81 <span class="product-title">$i18n{aboutProductTitle}</span>
82 </div> 82 </div>
83 <div class="settings-box two-line"> 83 <div class="settings-box two-line">
84 <iron-icon 84 <iron-icon
85 hidden="[[!shouldShowUpdateStatusIcon_( 85 hidden="[[!shouldShowUpdateStatusIcon_(
86 currentUpdateStatusEvent_)]]" 86 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]"
87 icon$="[[getIcon_(currentUpdateStatusEvent_)]]" 87 icon$="[[getIcon_(obsoleteSystemInfo_, currentUpdateStatusEven t_)]]"
88 src="[[getIconSrc_(currentUpdateStatusEvent_)]]"> 88 src="[[getIconSrc_(obsoleteSystemInfo_, currentUpdateStatusEve nt_)]]">
Dan Beam 2016/11/01 06:39:48 nit: 80 col wrap (you can wrap in a C++ or JS-like
dpapad 2016/11/01 16:38:09 Done.
89 </iron-icon> 89 </iron-icon>
90 <div class="start"> 90 <div class="start">
91 <div id="updateStatusMessage" 91 <div id="updateStatusMessage"
92 hidden="[[!shouldShowUpdateStatusMessage_( 92 hidden="[[!shouldShowUpdateStatusMessage_(
93 currentUpdateStatusEvent_)]]" 93 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]"
94 <if expr="not chromeos"> 94 <if expr="not chromeos">
95 inner-h-t-m-l="[[getUpdateStatusMessage_( 95 inner-h-t-m-l="[[getUpdateStatusMessage_(
96 currentUpdateStatusEvent_)]]"> 96 currentUpdateStatusEvent_)]]">
97 </if> 97 </if>
98 <if expr="chromeos"> 98 <if expr="chromeos">
99 inner-h-t-m-l="[[getUpdateStatusMessage_( 99 inner-h-t-m-l="[[getUpdateStatusMessage_(
100 currentUpdateStatusEvent_, targetChannel_)]]"> 100 currentUpdateStatusEvent_, targetChannel_)]]">
101 </if> 101 </if>
102 </div> 102 </div>
103 <span id="deprecationWarning" 103 <span id="deprecationWarning"
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 <settings-detailed-build-info></settings-detailed-build-info> 181 <settings-detailed-build-info></settings-detailed-build-info>
182 </settings-subpage> 182 </settings-subpage>
183 </template> 183 </template>
184 </if> 184 </if>
185 </settings-animated-pages> 185 </settings-animated-pages>
186 </settings-section> 186 </settings-section>
187 </div> 187 </div>
188 </template> 188 </template>
189 <script src="about_page.js"></script> 189 <script src="about_page.js"></script>
190 </dom-module> 190 </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