Skip to content

Commit

Permalink
[iOS] IsQueryStale Follow Up in SafeBrowsingTabHelper
Browse files Browse the repository at this point in the history
Addressing leftover comment from crrev.com/c/5824002 after CL was
landed.

Bug: 5824002
Change-Id: Ia01fe5fc2804991364714e19885dd531bc25a0e3
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5826134
Auto-Submit: Joemer Ramos <joemerramos@chromium.org>
Commit-Queue: Ali Juma <ajuma@chromium.org>
Commit-Queue: Joemer Ramos <joemerramos@chromium.org>
Reviewed-by: Ali Juma <ajuma@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1348888}
  • Loading branch information
Joemer Ramos authored and pull[bot] committed Sep 5, 2024
1 parent d51d0fa commit 1166501
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ void RecordTotalDelayMetricForDelayedAllowedNavigation(
return !GetOldestPendingMainFrameQuery(query_data);
}

return !GetOldestPendingToBeCommittedQuery(query_data) &&
return !GetOldestPendingMainFrameQuery(query_data) &&
!GetOldestPendingToBeCommittedQuery(query_data) &&
!GetOldestPendingCommittedQuery(query_data);
}

Expand Down

0 comments on commit 1166501

Please sign in to comment.