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

Unified Diff: chrome/browser/resources/chromeos/arc_support/background.js

Issue 2257073002: Revert of arc: avoid checkbox AutomationNode issue (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/arc_support/main.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/arc_support/background.js
diff --git a/chrome/browser/resources/chromeos/arc_support/background.js b/chrome/browser/resources/chromeos/arc_support/background.js
index 1e6857498f3f15e4d0630c07b4558f27e9901fff..65a459c0cf210e94a30358978081050282a6f221 100644
--- a/chrome/browser/resources/chromeos/arc_support/background.js
+++ b/chrome/browser/resources/chromeos/arc_support/background.js
@@ -149,7 +149,8 @@
function setMetricsMode(text, canEnable, on) {
var doc = appWindow.contentWindow.document;
var enableMetrics = doc.getElementById('enable-metrics');
- enableMetrics.hidden = !canEnable;
+ var enableMetricsContainer = doc.getElementById('enable-metrics-container');
+ enableMetricsContainer.hidden = !canEnable;
enableMetrics.checked = on;
var onSettings = function(event) {
« no previous file with comments | « no previous file | chrome/browser/resources/chromeos/arc_support/main.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698