| 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="/about_page/channel_switcher_dialog.html"> | 3 <link rel="import" href="/about_page/channel_switcher_dialog.html"> |
| 4 <link rel="import" href="/i18n_setup.html" | 4 <link rel="import" href="/i18n_setup.html" |
| 5 <link rel="import" href="/settings_shared_css.html"> | 5 <link rel="import" href="/settings_shared_css.html"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 6 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 7 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 10 | 10 |
| 11 <dom-module id="settings-detailed-build-info"> | 11 <dom-module id="settings-detailed-build-info"> |
| 12 <template> | 12 <template> |
| 13 <style include="settings-shared"></style> | 13 <style include="settings-shared"> |
| 14 .secondary { |
| 15 -webkit-user-select: text; |
| 16 } |
| 17 </style> |
| 14 <div class="settings-box two-line"> | 18 <div class="settings-box two-line"> |
| 15 <div class="start"> | 19 <div class="start"> |
| 16 <!-- TODO(dpapad): Localize string --> | 20 <!-- TODO(dpapad): Localize string --> |
| 17 <div>Platform</div> | 21 <div>Platform</div> |
| 18 <div class="secondary" id="osVersion">[[versionInfo_.osVersion]]</div> | 22 <div class="secondary" id="osVersion">[[versionInfo_.osVersion]]</div> |
| 19 </div> | 23 </div> |
| 20 </div> | 24 </div> |
| 21 <div class="settings-box two-line" | 25 <div class="settings-box two-line" |
| 22 hidden$="[[!shouldShowVersion_(versionInfo_.osFirmware)]]"> | 26 hidden$="[[!shouldShowVersion_(versionInfo_.osFirmware)]]"> |
| 23 <div class="start"> | 27 <div class="start"> |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 <div class="settings-box two-line"> | 85 <div class="settings-box two-line"> |
| 82 <div class="start"> | 86 <div class="start"> |
| 83 <!-- TODO(dpapad): Localize string --> | 87 <!-- TODO(dpapad): Localize string --> |
| 84 <div>Build date</div> | 88 <div>Build date</div> |
| 85 <div class="secondary">$i18n{aboutBuildDate}</div> | 89 <div class="secondary">$i18n{aboutBuildDate}</div> |
| 86 </div> | 90 </div> |
| 87 </div> | 91 </div> |
| 88 </template> | 92 </template> |
| 89 <script src="detailed_build_info.js"></script> | 93 <script src="detailed_build_info.js"></script> |
| 90 </dom-module> | 94 </dom-module> |
| OLD | NEW |