Skip to content

Commit

Permalink
Merge branch 'main' into feature/zealot7_doc_3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
open-hippy authored Aug 3, 2023
2 parents 6c4ef06 + d7b7ec4 commit 4b485d5
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ class PerformanceNavigationTiming : public PerformanceEntry {
member = t; \
if (start_time_.ToEpochDelta() == TimeDelta::Zero()) { \
start_time_ = t; \
} else if (t.ToEpochDelta() < start_time_.ToEpochDelta()) { \
start_time_ = t; \
} else if (t - start_time_ > duration_) { \
duration_ = t - start_time_; \
} \
Expand Down

0 comments on commit 4b485d5

Please sign in to comment.