Index: chrome/test/data/webui/net_internals/net_internals_test.js |
diff --git a/chrome/test/data/webui/net_internals/net_internals_test.js b/chrome/test/data/webui/net_internals/net_internals_test.js |
index 5293825347e5a4bb90728d8f5c95ab4acca2e6e6..fbeb2b77375572ecad348750b9c2645bcb728687 100644 |
--- a/chrome/test/data/webui/net_internals/net_internals_test.js |
+++ b/chrome/test/data/webui/net_internals/net_internals_test.js |
@@ -597,7 +597,7 @@ var NetInternalsTest = (function() { |
* @constructor |
*/ |
NetInternalsTest.Source = function(type, id) { |
- assertNotEquals(getKeyWithValue(LogSourceType, type), '?'); |
+ assertNotEquals(getKeyWithValue(EventSourceType, type), '?'); |
assertGE(id, 0); |
this.type = type; |
this.id = id; |
@@ -613,8 +613,8 @@ var NetInternalsTest = (function() { |
* @constructor |
*/ |
NetInternalsTest.Event = function(source, type, time, phase, params) { |
- assertNotEquals(getKeyWithValue(LogEventType, type), '?'); |
- assertNotEquals(getKeyWithValue(LogEventPhase, phase), '?'); |
+ assertNotEquals(getKeyWithValue(EventType, type), '?'); |
+ assertNotEquals(getKeyWithValue(EventPhase, phase), '?'); |
this.source = source; |
this.phase = phase; |
@@ -632,7 +632,7 @@ var NetInternalsTest = (function() { |
*/ |
NetInternalsTest.createBeginEvent = function(source, type, time, params) { |
return new NetInternalsTest.Event(source, type, time, |
- LogEventPhase.PHASE_BEGIN, params); |
+ EventPhase.PHASE_BEGIN, params); |
}; |
/** |
@@ -642,7 +642,7 @@ var NetInternalsTest = (function() { |
*/ |
NetInternalsTest.createEndEvent = function(source, type, time, params) { |
return new NetInternalsTest.Event(source, type, time, |
- LogEventPhase.PHASE_END, params); |
+ EventPhase.PHASE_END, params); |
}; |
/** |