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

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

Issue 2623673003: MD WebUI: change all <dialog is="cr-dialog"> to 512px width (Closed)
Patch Set: Created 3 years, 11 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
OLDNEW
1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html "> 1 <link rel="import" href="chrome://resources/cr_elements/cr_dialog/cr_dialog.html ">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/pape r-radio-button.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/paper -radio-group.html">
7 <link rel="import" href="/about_page/about_page_browser_proxy.html"> 7 <link rel="import" href="/about_page/about_page_browser_proxy.html">
8 <link rel="import" href="/settings_shared_css.html"> 8 <link rel="import" href="/settings_shared_css.html">
9 9
10 <dom-module id="settings-channel-switcher-dialog"> 10 <dom-module id="settings-channel-switcher-dialog">
11 <template> 11 <template>
12 <style include="settings-shared"> 12 <style include="settings-shared"></style>
13 dialog {
14 width: 600px;
15 }
16 </style>
17 <dialog is="cr-dialog" id="dialog"> 13 <dialog is="cr-dialog" id="dialog">
18 <div class="title">$i18n{aboutChangeChannel}</div> 14 <div class="title">$i18n{aboutChangeChannel}</div>
19 <div class="body"> 15 <div class="body">
20 <!-- TODO(dbeam): this can be policy-controlled. Show this in the UI. 16 <!-- TODO(dbeam): this can be policy-controlled. Show this in the UI.
21 https://www.chromium.org/administrators/policy-list-3#ChromeOsRelea seChannel 17 https://www.chromium.org/administrators/policy-list-3#ChromeOsRelea seChannel
22 --> 18 -->
23 <paper-radio-group 19 <paper-radio-group
24 on-paper-radio-group-changed="onChannelSelectionChanged_"> 20 on-paper-radio-group-changed="onChannelSelectionChanged_">
25 <paper-radio-button name="[[browserChannelEnum_.STABLE]]"> 21 <paper-radio-button name="[[browserChannelEnum_.STABLE]]">
26 $i18n{aboutChannelDialogStable} 22 $i18n{aboutChannelDialogStable}
(...skipping 21 matching lines...) Expand all
48 <paper-button id="changeChannelAndPowerwash" class="action-button" 44 <paper-button id="changeChannelAndPowerwash" class="action-button"
49 on-tap="onChangeChannelAndPowerwashTap_" 45 on-tap="onChangeChannelAndPowerwashTap_"
50 hidden="[[!shouldShowButtons_.changeChannelAndPowerwash]]"> 46 hidden="[[!shouldShowButtons_.changeChannelAndPowerwash]]">
51 $i18n{aboutChangeChannelAndPowerwash} 47 $i18n{aboutChangeChannelAndPowerwash}
52 </paper-button> 48 </paper-button>
53 </div> 49 </div>
54 </dialog> 50 </dialog>
55 </template> 51 </template>
56 <script src="channel_switcher_dialog.js"></script> 52 <script src="channel_switcher_dialog.js"></script>
57 </dom-module> 53 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698