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/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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 80 <div class="settings-box two-line"> | 80 <div class="settings-box two-line"> |
| 81 <iron-icon | 81 <iron-icon |
| 82 hidden="[[!shouldShowUpdateStatusIcon_( | 82 hidden="[[!shouldShowUpdateStatusIcon_( |
| 83 currentUpdateStatusEvent_)]]" | 83 currentUpdateStatusEvent_)]]" |
| 84 icon$="[[getIcon_(currentUpdateStatusEvent_)]]" | 84 icon$="[[getIcon_(currentUpdateStatusEvent_)]]" |
| 85 src="[[getIconSrc_(currentUpdateStatusEvent_)]]"> | 85 src="[[getIconSrc_(currentUpdateStatusEvent_)]]"> |
| 86 </iron-icon> | 86 </iron-icon> |
| 87 <div class="start"> | 87 <div class="start"> |
| 88 <div id="updateStatusMessage" | 88 <div id="updateStatusMessage" |
| 89 hidden="[[!shouldShowUpdateStatusMessage_( | 89 hidden="[[!shouldShowUpdateStatusMessage_( |
| 90 currentUpdateStatusEvent_)]]"> | 90 currentUpdateStatusEvent_)]]" |
| 91 <if expr="not chromeos"> | 91 <if expr="not chromeos"> |
| 92 [[getUpdateStatusMessage_(currentUpdateStatusEvent_)]] | 92 inner-h-t-m-l="[[getUpdateStatusMessage_( |
| 93 currentUpdateStatusEvent_)]]"> | |
|
Dan Beam
2016/08/05 22:58:33
indent off
dpapad
2016/08/05 23:31:45
Done.
| |
| 93 </if> | 94 </if> |
| 94 <if expr="chromeos"> | 95 <if expr="chromeos"> |
| 95 [[getUpdateStatusMessage_( | 96 inner-h-t-m-l="[[getUpdateStatusMessage_( |
| 96 currentUpdateStatusEvent_, targetChannel_)]] | 97 currentUpdateStatusEvent_, targetChannel_)]]"> |
| 97 </if> | 98 </if> |
| 98 </div> | 99 </div> |
| 99 <span id="deprecationWarning" | 100 <span id="deprecationWarning" |
| 100 hidden="[[!obsoleteSystemInfo_.obsolete]]"> | 101 hidden="[[!obsoleteSystemInfo_.obsolete]]"> |
| 101 $i18n{aboutObsoleteSystem} | 102 $i18n{aboutObsoleteSystem} |
| 102 <a href="$i18n{aboutObsoleteSystemURL}" target="_blank"> | 103 <a href="$i18n{aboutObsoleteSystemURL}" target="_blank"> |
| 103 $i18n{learnMore} | 104 $i18n{learnMore} |
| 104 </a> | 105 </a> |
| 105 </span> | 106 </span> |
| 106 <div class="secondary copyable">$i18n{aboutBrowserVersion}</div> | 107 <div class="secondary copyable">$i18n{aboutBrowserVersion}</div> |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 176 <settings-detailed-build-info></settings-detailed-build-info> | 177 <settings-detailed-build-info></settings-detailed-build-info> |
| 177 </settings-subpage> | 178 </settings-subpage> |
| 178 </template> | 179 </template> |
| 179 </if> | 180 </if> |
| 180 </settings-animated-pages> | 181 </settings-animated-pages> |
| 181 </settings-section> | 182 </settings-section> |
| 182 </div> | 183 </div> |
| 183 </template> | 184 </template> |
| 184 <script src="about_page.js"></script> | 185 <script src="about_page.js"></script> |
| 185 </dom-module> | 186 </dom-module> |
| OLD | NEW |