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

Unified Diff: chrome/browser/resources/net_internals/chromeos_view.js

Issue 8879029: Reflect ONC parse status correctly (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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/net_internals/chromeos_view.js
diff --git a/chrome/browser/resources/net_internals/chromeos_view.js b/chrome/browser/resources/net_internals/chromeos_view.js
index c20f8067200189d65b840d39a34672ba88557b2e..b560d82e84b5859bde2da00cee9720ddc14d69d0 100644
--- a/chrome/browser/resources/net_internals/chromeos_view.js
+++ b/chrome/browser/resources/net_internals/chromeos_view.js
@@ -72,7 +72,7 @@ var CrosView = (function() {
function setParseStatus_(success) {
var parseStatus = $(CrosView.PARSE_STATUS_ID);
parseStatus.hidden = false;
- parseStatus.textContent = status ?
+ parseStatus.textContent = success ?
achuithb 2011/12/08 19:34:17 oops! Thanks for fixing this. Sorry about the trou
"ONC file successfully parsed" : "ONC file parse failed";
reset_();
}

Powered by Google App Engine
This is Rietveld 408576698