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

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

Issue 1829703002: Add ArcEnabled policy implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed comments. Created 4 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/options/browser_options.js
diff --git a/chrome/browser/resources/options/browser_options.js b/chrome/browser/resources/options/browser_options.js
index 8538abc2197e6382fe2914c52f8e9e6c0428eaa6..514c0284bc9f9760c5467a0337d7996df92d22ff 100644
--- a/chrome/browser/resources/options/browser_options.js
+++ b/chrome/browser/resources/options/browser_options.js
@@ -2327,10 +2327,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.
+ * (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