Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1319)

Unified Diff: chrome/browser/net/passive_log_collector.cc

Issue 2909016: DevTools & WebTiming : Migrate from PassiveLogCollector to dedicated LoadTimingObserver. (Closed)
Patch Set: Fixed tests. Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/net/passive_log_collector.h ('k') | chrome/browser/renderer_host/async_resource_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/net/passive_log_collector.cc
diff --git a/chrome/browser/net/passive_log_collector.cc b/chrome/browser/net/passive_log_collector.cc
index c96c3a75df7e29ff096a2f5389999fb19a4a862b..152d3320a7d7d7da86c59e1630647d55b2b97a8f 100644
--- a/chrome/browser/net/passive_log_collector.cc
+++ b/chrome/browser/net/passive_log_collector.cc
@@ -241,14 +241,6 @@ void PassiveLogCollector::SourceTracker::AppendAllEntries(
}
}
-PassiveLogCollector::SourceInfo*
-PassiveLogCollector::SourceTracker::GetSourceInfo(uint32 source_id) {
- SourceIDToInfoMap::iterator it = sources_.find(source_id);
- if (it != sources_.end())
- return &(it->second);
- return NULL;
-}
-
void PassiveLogCollector::SourceTracker::AddToDeletionQueue(
uint32 source_id) {
DCHECK(sources_.find(source_id) != sources_.end());
« no previous file with comments | « chrome/browser/net/passive_log_collector.h ('k') | chrome/browser/renderer_host/async_resource_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698