Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: chrome/browser/resources/settings/about_page/detailed_build_info.html

Issue 2538043006: Settings: About: Fix cros channel info. (Closed)
Patch Set: Fix non cros tests Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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"> 13 <style include="settings-shared">
14 .secondary { 14 .secondary {
15 -webkit-user-select: text; 15 -webkit-user-select: text;
16 } 16 }
17 17
18 iron-icon {
19 padding: 8px;
20 }
21
18 /* The command line string can contain very long substrings that 22 /* The command line string can contain very long substrings that
19 * don't have any spaces, need to force a line break in such cases. */ 23 * don't have any spaces, need to force a line break in such cases. */
20 #command-line { 24 #command-line {
21 overflow-wrap: break-word; 25 overflow-wrap: break-word;
22 width: 100%; 26 width: 100%;
23 } 27 }
24 </style> 28 </style>
25 <div class="settings-box two-line single-column"> 29 <div class="settings-box two-line single-column">
26 <div>$i18n{aboutPlatformLabel}</div> 30 <div>$i18n{aboutPlatformLabel}</div>
27 <div class="secondary" id="osVersion">[[versionInfo_.osVersion]]</div> 31 <div class="secondary" id="osVersion">[[versionInfo_.osVersion]]</div>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 <div>$i18n{aboutCommandLineLabel}</div> 72 <div>$i18n{aboutCommandLineLabel}</div>
69 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div> 73 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div>
70 </div> 74 </div>
71 <div class="settings-box two-line single-column"> 75 <div class="settings-box two-line single-column">
72 <div>$i18n{aboutBuildDateLabel}</div> 76 <div>$i18n{aboutBuildDateLabel}</div>
73 <div class="secondary">$i18n{aboutBuildDate}</div> 77 <div class="secondary">$i18n{aboutBuildDate}</div>
74 </div> 78 </div>
75 </template> 79 </template>
76 <script src="detailed_build_info.js"></script> 80 <script src="detailed_build_info.js"></script>
77 </dom-module> 81 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698