| Index: chrome/browser/resources/net_internals/main.js
|
| ===================================================================
|
| --- chrome/browser/resources/net_internals/main.js (revision 47684)
|
| +++ chrome/browser/resources/net_internals/main.js (working copy)
|
| @@ -7,6 +7,7 @@
|
| */
|
| var LogEventType = null;
|
| var LogEventPhase = null;
|
| +var ClientInfo = null;
|
| var LogSourceType = null;
|
| var NetError = null;
|
| var LoadFlag = null;
|
| @@ -210,6 +211,11 @@
|
| LogEventType = constantsMap;
|
| };
|
|
|
| +BrowserBridge.prototype.receivedClientInfo =
|
| +function(info) {
|
| + ClientInfo = info;
|
| +};
|
| +
|
| BrowserBridge.prototype.receivedLogEventPhaseConstants =
|
| function(constantsMap) {
|
| LogEventPhase = constantsMap;
|
|
|