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 0b49ad7fc91335957c1145cbd22d9087c86ef861..ab87b1495d1840bb8eb03febebea738ecf3ac3fa 100644 |
--- a/chrome/browser/resources/net_internals/main.js |
+++ b/chrome/browser/resources/net_internals/main.js |
@@ -12,7 +12,6 @@ var EventTypeNames = null; |
var EventPhase = null; |
var EventSourceType = null; |
var EventSourceTypeNames = null; |
-var LogLevelType = null; |
var ClientInfo = null; |
var NetError = null; |
var QuicError = null; |
@@ -300,7 +299,6 @@ ConstantsObserver.prototype.onReceivedConstants = function(receivedConstants) { |
EventPhase = Constants.logEventPhase; |
EventSourceType = Constants.logSourceType; |
EventSourceTypeNames = makeInverseMap(EventSourceType); |
- LogLevelType = Constants.logLevelType; |
ClientInfo = Constants.clientInfo; |
LoadFlag = Constants.loadFlag; |
NetError = Constants.netError; |
@@ -331,7 +329,6 @@ function areValidConstants(receivedConstants) { |
typeof(receivedConstants.clientInfo) == 'object' && |
typeof(receivedConstants.logEventPhase) == 'object' && |
typeof(receivedConstants.logSourceType) == 'object' && |
- typeof(receivedConstants.logLevelType) == 'object' && |
typeof(receivedConstants.loadFlag) == 'object' && |
typeof(receivedConstants.netError) == 'object' && |
typeof(receivedConstants.addressFamily) == 'object' && |