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

Unified Diff: chrome/browser/resources/options/browser_options.js

Issue 1684063002: Add ArcEnabled policy implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@26869593
Patch Set: Fixed comments. Created 4 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/browser_options.js
diff --git a/chrome/browser/resources/options/browser_options.js b/chrome/browser/resources/options/browser_options.js
index c5347ef445cd9df59bfccc8e4e9445a5a8e30f38..4dfdfb3ca388fd9514696041af2e4805c9b4dc15 100644
--- a/chrome/browser/resources/options/browser_options.js
+++ b/chrome/browser/resources/options/browser_options.js
@@ -2324,10 +2324,11 @@ cr.define('options', function() {
};
/**
- * Hides Android Apps settings when they are not available (ChromeOS only).
+ * Hides Android Apps settings when they are not available.
bartfab (slow) 2016/03/07 13:44:04 Nit: Does this get unhidden when the policy change
Polina Bondarenko 2016/03/09 17:59:15 This is hidden only if ARC is not available on cur
+ * (Chrome OS only).
*/
BrowserOptions.hideAndroidAppsSection = function() {
- var section = $('andorid-apps-section');
+ var section = $('android-apps-section');
if (section)
section.hidden = true;
};

Powered by Google App Engine
This is Rietveld 408576698