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

Unified Diff: chrome/browser/resources/chromeos/diagnostics/main.js

Issue 12560002: Change var blah_blah -> blahBlah. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 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/chromeos/diagnostics/main.js
diff --git a/chrome/browser/resources/chromeos/diagnostics/main.js b/chrome/browser/resources/chromeos/diagnostics/main.js
index 11ceac692c632ff7109026c5712263fc613e61df..09f27818c3e7fa2beb8918dbcce18bb4fe716627 100644
--- a/chrome/browser/resources/chromeos/diagnostics/main.js
+++ b/chrome/browser/resources/chromeos/diagnostics/main.js
@@ -114,7 +114,7 @@ cr.define('diag', function() {
$('choose-adapter').hidden = false;
// Update netif state.
- var found_valid_ip = false;
+ var foundValidIp = false;
for (var i = 0; i < DiagPage.AdapterType.length; i++) {
var adapterType = DiagPage.AdapterType[i];
var status = netifStatus[adapterType.adapter];
@@ -128,11 +128,11 @@ cr.define('diag', function() {
this.adapterStatus_[i] = DiagPage.AdapterStatus.VALID_IP;
if (this.adapterStatus_[i] == DiagPage.AdapterStatus.VALID_IP)
- found_valid_ip = true;
+ foundValidIp = true;
}
// If we have valid IP, start ping test.
- if (found_valid_ip &&
+ if (foundValidIp &&
this.pingTestStatus_ == DiagPage.PingTestStatus.NOT_STARTED) {
this.pingTestStatus_ == DiagPage.PingTestStatus.IN_PROGRESS;
chrome.send('testICMP', [String('8.8.8.8')]);
« no previous file with comments | « chrome/browser/resources/backloader/scripts/background.js ('k') | chrome/browser/resources/chromeos/login/oobe.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698