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

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

Issue 775773002: Add data reduction proxy debug info to net-internals#bandwidth (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: bengr CR updates Created 6 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/main.js
diff --git a/chrome/browser/resources/net_internals/main.js b/chrome/browser/resources/net_internals/main.js
index 5975e8307c610888c08932aca6c81ba5152e30ea..6741e2d7f89cb9de1f19246e791a17f30aca6121 100644
--- a/chrome/browser/resources/net_internals/main.js
+++ b/chrome/browser/resources/net_internals/main.js
@@ -22,6 +22,7 @@ var CertStatusFlag = null;
var LoadState = null;
var AddressFamily = null;
var SdchProblemCode = null;
+var DataReductionProxyBypassEventType = null;
/**
* Dictionary of all constants, used for saving log files.
@@ -314,6 +315,8 @@ ConstantsObserver.prototype.onReceivedConstants = function(receivedConstants) {
AddressFamily = Constants.addressFamily;
LoadState = Constants.loadState;
SdchProblemCode = Constants.sdchProblemCode;
+ DataReductionProxyBypassEventType =
+ Constants.dataReductionProxyBypassEventType;
// certStatusFlag may not be present when loading old log Files
if (typeof(Constants.certStatusFlag) == 'object')
CertStatusFlag = Constants.certStatusFlag;
« no previous file with comments | « chrome/browser/resources/net_internals/browser_bridge.js ('k') | chrome/browser/ui/webui/net_internals/net_internals_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698