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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/android_apps_page/android_apps_subpage.html
diff --git a/chrome/browser/resources/settings/android_apps_page/android_apps_subpage.html b/chrome/browser/resources/settings/android_apps_page/android_apps_subpage.html
deleted file mode 100644
index 11639d6bbcfffa2158cfc47cb215accd23ffb280..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/settings/android_apps_page/android_apps_subpage.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<link rel="import" href="chrome://resources/html/i18n_behavior.html">
-<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-button.html">
-<link rel="import" href="android_apps_browser_proxy.html">
-<link rel="import" href="../i18n_setup.html">
-<link rel="import" href="../prefs/prefs_behavior.html">
-<link rel="import" href="../settings_shared_css.html">
-
-<dom-module id="settings-android-apps-subpage">
- <template>
- <style include="settings-shared"></style>
-
- <div id="manageApps" class="settings-box first"
- on-keydown="onManageAndroidAppsKeydown_"
- on-tap="onManageAndroidAppsTap_" actionable
- hidden="[[!androidAppsInfo_.appReady]]">
- <div class="start">
- <div>$i18n{androidAppsManageApps}</div>
- </div>
- <button class="icon-external" is="paper-icon-button-light">
- </button>
- </div>
-
- <template is="dom-if" if="[[allowRemove_(prefs.arc.enabled.*)]]">
- <div id="remove" class="settings-box" actionable on-tap="onRemoveTap_">
- <div class="start">$i18n{androidAppsRemove}</div>
- <button class="subpage-arrow" is="paper-icon-button-light"
- aria-label="$i18n{androidAppsRemove}">
- </button>
- </div>
- </template>
-
- <!-- Confirm disable android apps dialog -->
- <dialog is="cr-dialog" id="confirmDisableDialog" close-text="$i18n{close}"
- on-cancel="onConfirmDisableDialogCancel_">
- <div class="title">$i18n{androidAppsDisableDialogTitle}</div>
- <div class="body" inner-h-t-m-l="[[dialogBody_]]"></div>
- <div class="button-container">
- <paper-button class="cancel-button"
- on-tap="onConfirmDisableDialogCancel_">
- $i18n{cancel}
- </paper-button>
- <paper-button class="action-button"
- on-tap="onConfirmDisableDialogConfirm_">
- $i18n{androidAppsDisableDialogRemove}
- </paper-button>
- </div>
- </dialog>
-
- </template>
- <script src="android_apps_subpage.js"></script>
-</dom-module>

Powered by Google App Engine
This is Rietveld 408576698