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

Side by Side Diff: chrome/browser/resources/settings/system_page/system_page.html

Issue 1784353004: MD Settings: make "CHANGE PROXY SETTINGS" button primary styled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move-utils
Patch Set: Created 4 years, 9 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/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
3 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html"> 3 <link rel="import" href="chrome://md-settings/controls/settings_checkbox.html">
4 <link rel="import" href="chrome://md-settings/settings_shared_css.html"> 4 <link rel="import" href="chrome://md-settings/settings_shared_css.html">
5 5
6 <dom-module id="settings-system-page"> 6 <dom-module id="settings-system-page">
7 <template> 7 <template>
8 <style include="settings-shared"></style> 8 <style include="settings-shared"></style>
9 <div class="settings-box block first"> 9 <div class="settings-box block first">
10 <if expr="not is_macosx"> 10 <if expr="not is_macosx">
11 <settings-checkbox i18n-values="label:backgroundAppsLabel" 11 <settings-checkbox i18n-values="label:backgroundAppsLabel"
12 pref="{{prefs.background_mode.enabled}}"> 12 pref="{{prefs.background_mode.enabled}}">
13 </settings-checkbox> 13 </settings-checkbox>
14 </if> 14 </if>
15 <settings-checkbox i18n-values="label:hardwareAccelerationLabel" 15 <settings-checkbox i18n-values="label:hardwareAccelerationLabel"
16 pref="{{prefs.hardware_acceleration_mode.enabled}}"> 16 pref="{{prefs.hardware_acceleration_mode.enabled}}">
17 <!-- TODO(dbeam): restart button. --> 17 <!-- TODO(dbeam): restart button. -->
18 </settings-checkbox> 18 </settings-checkbox>
19 </div> 19 </div>
20 <div class="settings-box"> 20 <div class="settings-box">
21 <div class="button-strip"> 21 <div class="button-strip">
22 <paper-button i18n-content="changeProxySettings" 22 <paper-button i18n-content="changeProxySettings" class="primary-button"
23 on-tap="onChangeProxySettingsTap_"></paper-button> 23 on-tap="onChangeProxySettingsTap_"></paper-button>
24 </div> 24 </div>
25 </div> 25 </div>
26 </template> 26 </template>
27 <script src="chrome://md-settings/system_page/system_page.js"></script> 27 <script src="chrome://md-settings/system_page/system_page.js"></script>
28 </dom-module> 28 </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