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

Unified Diff: chrome/browser/resources/settings/android_apps_page/android_apps_page.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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/android_apps_page/android_apps_page.html
diff --git a/chrome/browser/resources/settings/android_apps_page/android_apps_page.html b/chrome/browser/resources/settings/android_apps_page/android_apps_page.html
index a072c1e63c3b041dcd8921f85419a872cc780e4a..a655bba6f385206fd205a21ca490130c81d7ef86 100644
--- a/chrome/browser/resources/settings/android_apps_page/android_apps_page.html
+++ b/chrome/browser/resources/settings/android_apps_page/android_apps_page.html
@@ -30,21 +30,20 @@
<cr-policy-pref-indicator pref="[[prefs.arc.enabled]]"
icon-aria-label="$i18n{androidAppsPageTitle}">
</cr-policy-pref-indicator>
- <template is="dom-if" if="[[androidAppsInfo_.appReady]]">
+ <template is="dom-if" if="[[androidAppsInfo_.playStoreEnabled]]">
<button class="subpage-arrow" is="paper-icon-button-light"
aria-label="$i18n{androidAppsPageTitle}"
aria-describedby="secondaryText">
</button>
</template>
- <template is="dom-if" if="[[!androidAppsInfo_.appReady]]">
- <div class="secondary-action">
- <paper-button id="enable" class="secondary-button"
- on-tap="onEnableTap_"
- aria-label="$i18n{androidAppsPageTitle}"
- aria-describedby="secondaryText">
- $i18n{androidAppsEnable}
- </paper-button>
- </div>
+ <template is="dom-if" if="[[!androidAppsInfo_.playStoreEnabled]]">
+ <div class="separator"></div>
+ <paper-button id="enable" class="secondary-button"
+ on-tap="onEnableTap_"
+ aria-label="$i18n{androidAppsPageTitle}"
+ aria-describedby="secondaryText">
+ $i18n{androidAppsEnable}
+ </paper-button>
</template>
</div>
</neon-animatable>

Powered by Google App Engine
This is Rietveld 408576698