summaryrefslogtreecommitdiffstats
path: root/content/renderer/stats_collection_observer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'content/renderer/stats_collection_observer.cc')
-rw-r--r--content/renderer/stats_collection_observer.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/content/renderer/stats_collection_observer.cc b/content/renderer/stats_collection_observer.cc
index 00211ff..4c4b911 100644
--- a/content/renderer/stats_collection_observer.cc
+++ b/content/renderer/stats_collection_observer.cc
@@ -18,12 +18,12 @@ StatsCollectionObserver::~StatsCollectionObserver() {
void StatsCollectionObserver::DidStartLoading() {
DCHECK(start_time_.is_null());
- start_time_ = base::TimeTicks::Now();
+ start_time_ = base::Time::Now();
}
void StatsCollectionObserver::DidStopLoading() {
DCHECK(stop_time_.is_null());
- stop_time_ = base::TimeTicks::Now();
+ stop_time_ = base::Time::Now();
// Stop observing so we don't get called again.
RenderViewImpl* impl = static_cast<RenderViewImpl*>(render_view());