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

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

Issue 2664503004: MD Settings: Make all HTML import href's relative. (Closed)
Patch Set: resolve more conflicts Created 3 years, 10 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_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"></style> 12 <style include="settings-shared"></style>
13 <dialog is="cr-dialog" id="dialog"> 13 <dialog is="cr-dialog" id="dialog">
14 <div class="title">$i18n{aboutChangeChannel}</div> 14 <div class="title">$i18n{aboutChangeChannel}</div>
15 <div class="body"> 15 <div class="body">
16 <!-- 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.
17 https://www.chromium.org/administrators/policy-list-3#ChromeOsRelea seChannel 17 https://www.chromium.org/administrators/policy-list-3#ChromeOsRelea seChannel
18 --> 18 -->
(...skipping 25 matching lines...) Expand all
44 <paper-button id="changeChannelAndPowerwash" class="action-button" 44 <paper-button id="changeChannelAndPowerwash" class="action-button"
45 on-tap="onChangeChannelAndPowerwashTap_" 45 on-tap="onChangeChannelAndPowerwashTap_"
46 hidden="[[!shouldShowButtons_.changeChannelAndPowerwash]]"> 46 hidden="[[!shouldShowButtons_.changeChannelAndPowerwash]]">
47 $i18n{aboutChangeChannelAndPowerwash} 47 $i18n{aboutChangeChannelAndPowerwash}
48 </paper-button> 48 </paper-button>
49 </div> 49 </div>
50 </dialog> 50 </dialog>
51 </template> 51 </template>
52 <script src="channel_switcher_dialog.js"></script> 52 <script src="channel_switcher_dialog.js"></script>
53 </dom-module> 53 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698