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

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

Issue 2538043006: Settings: About: Fix cros channel info. (Closed)
Patch Set: Rebase Created 4 years 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/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 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 $i18n{learnMore} 109 $i18n{learnMore}
110 </a> 110 </a>
111 </span> 111 </span>
112 <div class="secondary copyable">$i18n{aboutBrowserVersion}</div> 112 <div class="secondary copyable">$i18n{aboutBrowserVersion}</div>
113 </div> 113 </div>
114 <span id="relaunchContainer" 114 <span id="relaunchContainer"
115 <if expr="not chromeos"> 115 <if expr="not chromeos">
116 hidden="[[!shouldShowRelaunch_(currentUpdateStatusEvent_)]]" 116 hidden="[[!shouldShowRelaunch_(currentUpdateStatusEvent_)]]"
117 </if> 117 </if>
118 <if expr="chromeos"> 118 <if expr="chromeos">
119 hidden="[[!shouldShowRelaunch_( 119 hidden="[[!shouldShowRelaunch_(currentUpdateStatusEvent_,
120 currentUpdateStatusEvent_, targetChannel_)]]" 120 currentChannel_, targetChannel_)]]"
121 </if> 121 </if>
122 class="secondary-action"> 122 class="secondary-action">
123 <paper-button id="relaunch" class="secondary-button" 123 <paper-button id="relaunch" class="secondary-button"
124 on-tap="onRelaunchTap_"> 124 on-tap="onRelaunchTap_">
125 $i18n{aboutRelaunch} 125 $i18n{aboutRelaunch}
126 </paper-button> 126 </paper-button>
127 <if expr="chromeos"> 127 <if expr="chromeos">
128 <paper-button id="relaunchAndPowerwash" class="secondary-button" 128 <paper-button id="relaunchAndPowerwash" class="secondary-button"
129 hidden="[[!shouldShowRelaunchAndPowerwash_( 129 hidden="[[!shouldShowRelaunchAndPowerwash_(
130 currentUpdateStatusEvent_, targetChannel_)]]" 130 currentUpdateStatusEvent_, targetChannel_)]]"
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 <settings-detailed-build-info></settings-detailed-build-info> 190 <settings-detailed-build-info></settings-detailed-build-info>
191 </settings-subpage> 191 </settings-subpage>
192 </template> 192 </template>
193 </if> 193 </if>
194 </settings-animated-pages> 194 </settings-animated-pages>
195 </settings-section> 195 </settings-section>
196 </div> 196 </div>
197 </template> 197 </template>
198 <script src="about_page.js"></script> 198 <script src="about_page.js"></script>
199 </dom-module> 199 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698