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

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

Issue 6995086: Update about:net-internals to use Javascript for loading logs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fix variable names in response to comment Created 9 years, 6 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/net_internals/index.html ('k') | chrome/browser/ui/webui/net_internals_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/net_internals/main.js
===================================================================
--- chrome/browser/resources/net_internals/main.js (revision 88439)
+++ chrome/browser/resources/net_internals/main.js (working copy)
@@ -396,10 +396,6 @@
chrome.send('enableHttpThrottling', [enable]);
};
-BrowserBridge.prototype.loadLogFile = function() {
- chrome.send('loadLogFile');
-};
-
BrowserBridge.prototype.refreshSystemLogs = function() {
chrome.send('refreshSystemLogs');
};
@@ -613,7 +609,7 @@
// removed or added between versions. Could also happen
// with source types, but less likely.
console.log(
- 'Unrecognized values in log entry: ' + JSON.stringify(entry));
+ 'Unrecognized values in log entry: ' + JSON.stringify(entries[i]));
}
}
« no previous file with comments | « chrome/browser/resources/net_internals/index.html ('k') | chrome/browser/ui/webui/net_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698