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

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

Issue 2746143004: MD Settings: Use correct change event for noSetPref (Closed)
Patch Set: Created 3 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 | chrome/browser/resources/settings/internet_page/network_proxy.html » ('j') | 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/i18n_behavior.html"> 1 <link rel="import" href="chrome://resources/html/i18n_behavior.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/polymer/v1_0/paper-button/paper-butt on.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
4 <link rel="import" href="android_apps_browser_proxy.html"> 4 <link rel="import" href="android_apps_browser_proxy.html">
5 <link rel="import" href="../controls/settings_toggle_button.html"> 5 <link rel="import" href="../controls/settings_toggle_button.html">
6 <link rel="import" href="../i18n_setup.html"> 6 <link rel="import" href="../i18n_setup.html">
7 <link rel="import" href="../prefs/prefs_behavior.html"> 7 <link rel="import" href="../prefs/prefs_behavior.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-android-apps-page"> 10 <dom-module id="settings-android-apps-page">
11 <template> 11 <template>
12 <style include="settings-shared"> 12 <style include="settings-shared">
13 a { 13 a {
14 -webkit-margin-start: 4px; 14 -webkit-margin-start: 4px;
15 height: var(--checkbox-size); 15 height: var(--checkbox-size);
16 } 16 }
17 17
18 .indented { 18 .indented {
19 -webkit-margin-start: var(--settings-indent-width); 19 -webkit-margin-start: var(--settings-indent-width);
20 } 20 }
21 </style> 21 </style>
22 22
23 <div class="settings-box first"> 23 <div class="settings-box first">
24 <settings-toggle-button id="enabled" class="start" 24 <settings-toggle-button id="enabled" class="start"
25 pref="{{prefs.arc.enabled}}" 25 pref="{{prefs.arc.enabled}}"
26 label="$i18n{androidAppsEnabled}" 26 label="$i18n{androidAppsEnabled}"
27 on-change="onArcEnabledChange_" 27 on-settings-boolean-control-change="onArcEnabledChange_"
28 no-set-pref> 28 no-set-pref>
29 <a href="$i18nRaw{androidAppsLearnMoreUrl}" target="_blank" 29 <a href="$i18nRaw{androidAppsLearnMoreUrl}" target="_blank"
30 class="more-actions" on-tap="stopPropagation_"> 30 class="more-actions" on-tap="stopPropagation_">
31 $i18n{androidAppsLearnMore} 31 $i18n{androidAppsLearnMore}
32 </a> 32 </a>
33 </settings-toggle-button> 33 </settings-toggle-button>
34 </div> 34 </div>
35 35
36 <div id="manageApps" class="settings-box continuation indented" 36 <div id="manageApps" class="settings-box continuation indented"
37 on-keydown="onManageAndroidAppsKeydown_" 37 on-keydown="onManageAndroidAppsKeydown_"
(...skipping 18 matching lines...) Expand all
56 </paper-button> 56 </paper-button>
57 <paper-button class="action-button" 57 <paper-button class="action-button"
58 on-tap="onConfirmDisableDialogConfirm_"> 58 on-tap="onConfirmDisableDialogConfirm_">
59 $i18n{confirm} 59 $i18n{confirm}
60 </paper-button> 60 </paper-button>
61 </div> 61 </div>
62 </dialog> 62 </dialog>
63 </template> 63 </template>
64 <script src="android_apps_page.js"></script> 64 <script src="android_apps_page.js"></script>
65 </dom-module> 65 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/internet_page/network_proxy.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698