Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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_)]]" |
| 98 src="[[getIconSrc_( | 98 src="[[getIconSrc_( |
| 99 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]"> | 99 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]"> |
| 100 </iron-icon> | 100 </iron-icon> |
| 101 <div class="start"> | 101 <div class="start"> |
| 102 <if expr="not chromeos"> | |
| 102 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" | 103 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" |
| 103 <if expr="not chromeos"> | |
| 104 inner-h-t-m-l="[[getUpdateStatusMessage_( | 104 inner-h-t-m-l="[[getUpdateStatusMessage_( |
| 105 currentUpdateStatusEvent_)]]"> | 105 currentUpdateStatusEvent_)]]"> |
| 106 </div> | |
| 106 </if> | 107 </if> |
| 107 <if expr="chromeos"> | 108 <if expr="chromeos"> |
| 109 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" | |
| 108 inner-h-t-m-l="[[getUpdateStatusMessage_( | 110 inner-h-t-m-l="[[getUpdateStatusMessage_( |
| 109 currentUpdateStatusEvent_, targetChannel_)]]"> | 111 currentUpdateStatusEvent_, targetChannel_)]]"> |
| 112 </div> | |
| 113 <div id="updateStatusMessage" hidden="[[!showConnectionType_]]" | |
|
dpapad
2017/02/16 21:22:27
Having two elements with the same ID in the DOM do
stevenjb
2017/02/17 01:06:01
Oops. Copy/paste bug. I'll change the id and add a
dpapad
2017/02/17 01:14:38
Conceptually the connection types error message is
stevenjb
2017/02/17 01:28:51
I feel like there is a difference between embeddin
dpapad
2017/02/17 02:44:28
FWIW, the <b> is just a trick. We don't actually i
| |
| 114 inner-h-t-m-l="[[ | |
| 115 currentUpdateStatusEvent_.connectionTypes]]"> | |
| 116 </div> | |
| 110 </if> | 117 </if> |
| 111 </div> | |
| 112 <span id="deprecationWarning" | 118 <span id="deprecationWarning" |
| 113 hidden="[[!obsoleteSystemInfo_.obsolete]]"> | 119 hidden="[[!obsoleteSystemInfo_.obsolete]]"> |
| 114 $i18n{aboutObsoleteSystem} | 120 $i18n{aboutObsoleteSystem} |
| 115 <a href="$i18n{aboutObsoleteSystemURL}" target="_blank"> | 121 <a href="$i18n{aboutObsoleteSystemURL}" target="_blank"> |
| 116 $i18n{learnMore} | 122 $i18n{learnMore} |
| 117 </a> | 123 </a> |
| 118 </span> | 124 </span> |
| 119 <div class="secondary copyable">$i18n{aboutBrowserVersion}</div> | 125 <div class="secondary copyable">$i18n{aboutBrowserVersion}</div> |
| 120 </div> | 126 </div> |
| 121 <span id="buttonContainer" class="secondary-action" | 127 <span id="buttonContainer" class="secondary-action" |
| (...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 211 <settings-detailed-build-info></settings-detailed-build-info> | 217 <settings-detailed-build-info></settings-detailed-build-info> |
| 212 </settings-subpage> | 218 </settings-subpage> |
| 213 </template> | 219 </template> |
| 214 </if> | 220 </if> |
| 215 </settings-animated-pages> | 221 </settings-animated-pages> |
| 216 </settings-section> | 222 </settings-section> |
| 217 </div> | 223 </div> |
| 218 </template> | 224 </template> |
| 219 <script src="about_page.js"></script> | 225 <script src="about_page.js"></script> |
| 220 </dom-module> | 226 </dom-module> |
| OLD | NEW |