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

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

Issue 2798753002: Revert of MD Settings: Google Play Store: Add subpage and polish (Closed)
Patch Set: Created 3 years, 8 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
(Empty)
1 <link rel="import" href="chrome://resources/html/i18n_behavior.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">
4 <link rel="import" href="android_apps_browser_proxy.html">
5 <link rel="import" href="../i18n_setup.html">
6 <link rel="import" href="../prefs/prefs_behavior.html">
7 <link rel="import" href="../settings_shared_css.html">
8
9 <dom-module id="settings-android-apps-subpage">
10 <template>
11 <style include="settings-shared"></style>
12
13 <div id="manageApps" class="settings-box first"
14 on-keydown="onManageAndroidAppsKeydown_"
15 on-tap="onManageAndroidAppsTap_" actionable
16 hidden="[[!androidAppsInfo_.appReady]]">
17 <div class="start">
18 <div>$i18n{androidAppsManageApps}</div>
19 </div>
20 <button class="icon-external" is="paper-icon-button-light">
21 </button>
22 </div>
23
24 <template is="dom-if" if="[[allowRemove_(prefs.arc.enabled.*)]]">
25 <div id="remove" class="settings-box" actionable on-tap="onRemoveTap_">
26 <div class="start">$i18n{androidAppsRemove}</div>
27 <button class="subpage-arrow" is="paper-icon-button-light"
28 aria-label="$i18n{androidAppsRemove}">
29 </button>
30 </div>
31 </template>
32
33 <!-- Confirm disable android apps dialog -->
34 <dialog is="cr-dialog" id="confirmDisableDialog" close-text="$i18n{close}"
35 on-cancel="onConfirmDisableDialogCancel_">
36 <div class="title">$i18n{androidAppsDisableDialogTitle}</div>
37 <div class="body" inner-h-t-m-l="[[dialogBody_]]"></div>
38 <div class="button-container">
39 <paper-button class="cancel-button"
40 on-tap="onConfirmDisableDialogCancel_">
41 $i18n{cancel}
42 </paper-button>
43 <paper-button class="action-button"
44 on-tap="onConfirmDisableDialogConfirm_">
45 $i18n{androidAppsDisableDialogRemove}
46 </paper-button>
47 </div>
48 </dialog>
49
50 </template>
51 <script src="android_apps_subpage.js"></script>
52 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698