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

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

Issue 2880033002: [Merge M59] arg: Handle ARC events in MD Settings (Closed)
Patch Set: Created 3 years, 7 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/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="../i18n_setup.html"> 5 <link rel="import" href="../i18n_setup.html">
6 <link rel="import" href="../prefs/prefs_behavior.html"> 6 <link rel="import" href="../prefs/prefs_behavior.html">
7 <link rel="import" href="../settings_shared_css.html"> 7 <link rel="import" href="../settings_shared_css.html">
8 8
9 <dom-module id="settings-android-apps-subpage"> 9 <dom-module id="settings-android-apps-subpage">
10 <template> 10 <template>
11 <style include="settings-shared"></style> 11 <style include="settings-shared"></style>
12 12
13 <div id="manageApps" class="settings-box first" 13 <div id="manageApps" class="settings-box first"
14 on-keydown="onManageAndroidAppsKeydown_" 14 on-keydown="onManageAndroidAppsKeydown_"
15 on-tap="onManageAndroidAppsTap_" actionable 15 on-tap="onManageAndroidAppsTap_" actionable
16 hidden="[[!androidAppsInfo_.appReady]]"> 16 hidden="[[!androidAppsInfo.settingsAppAvailable]]">
17 <div class="start"> 17 <div class="start">
18 <div>$i18n{androidAppsManageApps}</div> 18 <div>$i18n{androidAppsManageApps}</div>
19 </div> 19 </div>
20 <button class="icon-external" is="paper-icon-button-light"> 20 <button class="icon-external" is="paper-icon-button-light">
21 </button> 21 </button>
22 </div> 22 </div>
23 23
24 <template is="dom-if" if="[[allowRemove_(prefs.arc.enabled.*)]]"> 24 <template is="dom-if" if="[[allowRemove_(prefs.arc.enabled.*)]]">
25 <div id="remove" class="settings-box" actionable on-tap="onRemoveTap_"> 25 <div id="remove" class="settings-box" actionable on-tap="onRemoveTap_">
26 <div class="start">$i18n{androidAppsRemove}</div> 26 <div class="start">$i18n{androidAppsRemove}</div>
(...skipping 17 matching lines...) Expand all
44 <paper-button class="action-button" 44 <paper-button class="action-button"
45 on-tap="onConfirmDisableDialogConfirm_"> 45 on-tap="onConfirmDisableDialogConfirm_">
46 $i18n{androidAppsDisableDialogRemove} 46 $i18n{androidAppsDisableDialogRemove}
47 </paper-button> 47 </paper-button>
48 </div> 48 </div>
49 </dialog> 49 </dialog>
50 50
51 </template> 51 </template>
52 <script src="android_apps_subpage.js"></script> 52 <script src="android_apps_subpage.js"></script>
53 </dom-module> 53 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698