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

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

Issue 2815363002: MD Settings: About: Provide correct indicator name (Closed)
Patch Set: Created 3 years, 8 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_browser_proxy.html"> 2 <link rel="import" href="about_page_browser_proxy.html">
3 <link rel="import" href="channel_switcher_dialog.html"> 3 <link rel="import" href="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/policy/cr_policy_indicat or.html"> 6 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_indicat or.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/paper-button/paper-butt on.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
9 9
10 <dom-module id="settings-detailed-build-info"> 10 <dom-module id="settings-detailed-build-info">
(...skipping 28 matching lines...) Expand all
39 <div>$i18n{aboutChannelLabel}</div> 39 <div>$i18n{aboutChannelLabel}</div>
40 <div class="secondary">[[currentlyOnChannelText_]]</div> 40 <div class="secondary">[[currentlyOnChannelText_]]</div>
41 </div> 41 </div>
42 <div class="secondary-action"> 42 <div class="secondary-action">
43 <paper-button on-tap="onChangeChannelTap_" 43 <paper-button on-tap="onChangeChannelTap_"
44 disabled="[[!canChangeChannel_]]"> 44 disabled="[[!canChangeChannel_]]">
45 $i18n{aboutChangeChannel} 45 $i18n{aboutChangeChannel}
46 </paper-button> 46 </paper-button>
47 <template is="dom-if" if="[[!canChangeChannel_]]"> 47 <template is="dom-if" if="[[!canChangeChannel_]]">
48 <cr-policy-indicator 48 <cr-policy-indicator
49 name="[[getChangeChannelIndicatorSourceName_(canChangeChannel_)]]" 49 indicator-source-name="[[getChangeChannelIndicatorSourceName_(
50 canChangeChannel_)]]"
50 indicator-type="[[getChangeChannelIndicatorType_( 51 indicator-type="[[getChangeChannelIndicatorType_(
51 canChangeChannel_)]]"> 52 canChangeChannel_)]]">
52 </cr-policy-indicator> 53 </cr-policy-indicator>
53 </template> 54 </template>
54 </div> 55 </div>
55 <template is="dom-if" if="[[showChannelSwitcherDialog_]]" restamp> 56 <template is="dom-if" if="[[showChannelSwitcherDialog_]]" restamp>
56 <settings-channel-switcher-dialog 57 <settings-channel-switcher-dialog
57 on-close="onChannelSwitcherDialogClosed_"> 58 on-close="onChannelSwitcherDialogClosed_">
58 </settings-channel-switcher-dialog> 59 </settings-channel-switcher-dialog>
59 </template> 60 </template>
(...skipping 19 matching lines...) Expand all
79 <div>$i18n{aboutCommandLineLabel}</div> 80 <div>$i18n{aboutCommandLineLabel}</div>
80 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div> 81 <div id="command-line" class="secondary">$i18n{aboutCommandLine}</div>
81 </div> 82 </div>
82 <div class="settings-box two-line single-column"> 83 <div class="settings-box two-line single-column">
83 <div>$i18n{aboutBuildDateLabel}</div> 84 <div>$i18n{aboutBuildDateLabel}</div>
84 <div class="secondary">$i18n{aboutBuildDate}</div> 85 <div class="secondary">$i18n{aboutBuildDate}</div>
85 </div> 86 </div>
86 </template> 87 </template>
87 <script src="detailed_build_info.js"></script> 88 <script src="detailed_build_info.js"></script>
88 </dom-module> 89 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698