Home
last modified time | relevance | path

Searched refs:logEntry (Results 1 – 5 of 5) sorted by relevance

/external/chromium/chrome/browser/resources/net_internals/
Dproxyview.js80 ProxyView.prototype.onLogEntryAdded = function(logEntry) { argument
81 if (logEntry.source.type != LogSourceType.INIT_PROXY_RESOLVER ||
82 this.latestProxySourceId_ > logEntry.source.id) {
86 if (logEntry.source.id > this.latestProxySourceId_) {
87 this.latestProxySourceId_ = logEntry.source.id;
91 this.latestProxySourceEntries_.push(logEntry);
Dsourceentry.js67 SourceEntry.prototype.update = function(logEntry) { argument
68 if (logEntry.phase == LogEventPhase.PHASE_BEGIN &&
74 logEntry.phase == LogEventPhase.PHASE_END &&
75 logEntry.type == this.entries_[0].type)
79 this.entries_.push(logEntry);
Dmain.js822 var logEntry = logEntries[e];
825 if (logEntry.source.id == 0) {
826 logEntry.source.id = this.nextSourcelessEventId_;
829 this.capturedEvents_.push(logEntry);
831 this.logObservers_[i].onLogEntryAdded(logEntry);
Deventsview.js432 EventsView.prototype.onLogEntryAdded = function(logEntry) { argument
433 var id = logEntry.source.id;
446 sourceEntry.update(logEntry);
Ddataview.js70 DataView.prototype.onLogEntryAdded = function(logEntry) { argument