| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 | 2 |
| 3 <link rel="import" href="about_page_browser_proxy.html"> | 3 <link rel="import" href="about_page_browser_proxy.html"> |
| 4 <link rel="import" href="../i18n_setup.html"> | 4 <link rel="import" href="../i18n_setup.html"> |
| 5 <link rel="import" href="../icons.html"> | 5 <link rel="import" href="../icons.html"> |
| 6 <link rel="import" href="../lifetime_browser_proxy.html"> | 6 <link rel="import" href="../lifetime_browser_proxy.html"> |
| 7 <link rel="import" href="../route.html"> | 7 <link rel="import" href="../route.html"> |
| 8 <link rel="import" href="../settings_page/main_page_behavior.html"> | 8 <link rel="import" href="../settings_page/main_page_behavior.html"> |
| 9 <link rel="import" href="../settings_page/settings_animated_pages.html"> | 9 <link rel="import" href="../settings_page/settings_animated_pages.html"> |
| 10 <link rel="import" href="../settings_page/settings_section.html"> | 10 <link rel="import" href="../settings_page/settings_section.html"> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 </if> | 29 </if> |
| 30 | 30 |
| 31 <dom-module id="settings-about-page"> | 31 <dom-module id="settings-about-page"> |
| 32 <template> | 32 <template> |
| 33 <style include="settings-shared settings-page-styles"> | 33 <style include="settings-shared settings-page-styles"> |
| 34 :host { | 34 :host { |
| 35 --about-page-image-space: 10px; | 35 --about-page-image-space: 10px; |
| 36 } | 36 } |
| 37 | 37 |
| 38 .copyable { | 38 .copyable { |
| 39 -webkit-user-select: text; | 39 user-select: text; |
| 40 } | 40 } |
| 41 | 41 |
| 42 .info-section { | 42 .info-section { |
| 43 margin-bottom: 12px; | 43 margin-bottom: 12px; |
| 44 } | 44 } |
| 45 | 45 |
| 46 .padded { | 46 .padded { |
| 47 padding-bottom: 10px; | 47 padding-bottom: 10px; |
| 48 padding-top: 10px; | 48 padding-top: 10px; |
| 49 } | 49 } |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 <div class="settings-box two-line"> | 100 <div class="settings-box two-line"> |
| 101 <!-- TODO(dpapad): Investigate why vulcanize does not handle well | 101 <!-- TODO(dpapad): Investigate why vulcanize does not handle well |
| 102 a new line after "getIconSrc_(", causes incorrect src URL --> | 102 a new line after "getIconSrc_(", causes incorrect src URL --> |
| 103 <iron-icon | 103 <iron-icon |
| 104 hidden="[[!showUpdateStatus_]]" | 104 hidden="[[!showUpdateStatus_]]" |
| 105 icon$="[[getIcon_( | 105 icon$="[[getIcon_( |
| 106 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]" | 106 obsoleteSystemInfo_, currentUpdateStatusEvent_)]]" |
| 107 src="[[getIconSrc_(obsoleteSystemInfo_, currentUpdateStatusEve
nt_)]]"> | 107 src="[[getIconSrc_(obsoleteSystemInfo_, currentUpdateStatusEve
nt_)]]"> |
| 108 </iron-icon> | 108 </iron-icon> |
| 109 <div class="start padded"> | 109 <div class="start padded"> |
| 110 <div id="updateStatusMessage" hidden="[[!showUpdateStatus_]]" | 110 <div id="updateStatusMessage" class="copyable" |
| 111 hidden="[[!showUpdateStatus_]]" |
| 111 <if expr="not chromeos"> | 112 <if expr="not chromeos"> |
| 112 inner-h-t-m-l="[[getUpdateStatusMessage_( | 113 inner-h-t-m-l="[[getUpdateStatusMessage_( |
| 113 currentUpdateStatusEvent_)]]"> | 114 currentUpdateStatusEvent_)]]"> |
| 114 </if> | 115 </if> |
| 115 <if expr="chromeos"> | 116 <if expr="chromeos"> |
| 116 inner-h-t-m-l="[[getUpdateStatusMessage_( | 117 inner-h-t-m-l="[[getUpdateStatusMessage_( |
| 117 currentUpdateStatusEvent_, targetChannel_)]]"> | 118 currentUpdateStatusEvent_, targetChannel_)]]"> |
| 118 </if> | 119 </if> |
| 119 </div> | 120 </div> |
| 120 <span id="deprecationWarning" | 121 <span id="deprecationWarning" |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 <if expr="chromeos"> | 231 <if expr="chromeos"> |
| 231 <template is="dom-if" if="[[showUpdateWarningDialog_]]" restamp> | 232 <template is="dom-if" if="[[showUpdateWarningDialog_]]" restamp> |
| 232 <settings-update-warning-dialog update-info="[[updateInfo_]]" | 233 <settings-update-warning-dialog update-info="[[updateInfo_]]" |
| 233 on-close="onUpdateWarningDialogClose_"> | 234 on-close="onUpdateWarningDialogClose_"> |
| 234 </settings-update-warning-dialog> | 235 </settings-update-warning-dialog> |
| 235 </template> | 236 </template> |
| 236 </if> | 237 </if> |
| 237 </template> | 238 </template> |
| 238 <script src="about_page.js"></script> | 239 <script src="about_page.js"></script> |
| 239 </dom-module> | 240 </dom-module> |
| OLD | NEW |