Skip to content

Commit

Permalink
Merge branch 'main' into feature/update-vue-docs
Browse files Browse the repository at this point in the history
  • Loading branch information
open-hippy authored Aug 3, 2023
2 parents 130e451 + d7b7ec4 commit 04de241
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 04de241

Please sign in to comment.