| 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;
|
|
|