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

Unified Diff: chrome/browser/resources/net_internals/source_entry.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
« no previous file with comments | « chrome/browser/resources/history/history.js ('k') | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/source_entry.js
diff --git a/chrome/browser/resources/net_internals/source_entry.js b/chrome/browser/resources/net_internals/source_entry.js
index 8685db72c6ae0ef7562b28fc1f94a6960be2c418..99338ba93e79321a07941f9e449b5ce916eaeb68 100644
--- a/chrome/browser/resources/net_internals/source_entry.js
+++ b/chrome/browser/resources/net_internals/source_entry.js
@@ -217,14 +217,14 @@ var SourceEntry = (function() {
return this.entries_[1];
if (this.entries_[0].type == EventType.REQUEST_ALIVE &&
this.entries_[0].params == undefined) {
- var start_index = 1;
+ var startIndex = 1;
// Skip over URL_REQUEST_BLOCKED_ON_DELEGATE events for URL_REQUESTs.
- while (start_index + 1 < this.entries_.length &&
- this.entries_[start_index].type ==
+ while (startIndex + 1 < this.entries_.length &&
+ this.entries_[startIndex].type ==
EventType.URL_REQUEST_BLOCKED_ON_DELEGATE) {
- ++start_index;
+ ++startIndex;
}
- return this.entries_[start_index];
+ return this.entries_[startIndex];
}
if (this.entries_[1].type == EventType.IPV6_PROBE_RUNNING)
return this.entries_[1];
« no previous file with comments | « chrome/browser/resources/history/history.js ('k') | chrome/browser/resources/ntp4/new_tab.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698