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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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 Loading... | |
| 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> |
| OLD | NEW |