Index: chrome/browser/ui/search/search_ipc_router.cc |
diff --git a/chrome/browser/ui/search/search_ipc_router.cc b/chrome/browser/ui/search/search_ipc_router.cc |
index eac9fc44a5c2919d94ecdd33aba6616938923f5e..1c06b1c3704a8e89f4877d9c494bd6a3133e36a8 100644 |
--- a/chrome/browser/ui/search/search_ipc_router.cc |
+++ b/chrome/browser/ui/search/search_ipc_router.cc |
@@ -283,7 +283,8 @@ void SearchIPCRouter::OnUndoAllMostVisitedDeletions(int page_seq_no) const { |
} |
void SearchIPCRouter::OnLogEvent(int page_seq_no, |
- NTPLoggingEventType event) const { |
+ NTPLoggingEventType event, |
+ base::TimeDelta time) const { |
if (page_seq_no != commit_counter_) |
return; |
@@ -291,7 +292,7 @@ void SearchIPCRouter::OnLogEvent(int page_seq_no, |
if (!policy_->ShouldProcessLogEvent()) |
return; |
- delegate_->OnLogEvent(event); |
+ delegate_->OnLogEvent(event, time); |
} |
void SearchIPCRouter::OnLogMostVisitedImpression( |