| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Code-Review | +1 |
void IdentityUrlLoaderThrottle::DetachFromCurrentSequence() {What is this method for? Its confusing. Can we add a comment?
network::mojom::RequestDestination cb_destination_;It's better to initialize this member to a default value (e.g., `network::mojom::RequestDestination::kEmpty`) to avoid potential garbage reads if a test checks it before any callback is run.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
I made an alternative fix for this in https://chromium-review.googlesource.com/c/chromium/src/+/7803097... let me know which you prefer
(Will add that comment either way, although it's unrelated to this change)
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
void IdentityUrlLoaderThrottle::DetachFromCurrentSequence() {What is this method for? Its confusing. Can we add a comment?
It's better to initialize this member to a default value (e.g., `network::mojom::RequestDestination::kEmpty`) to avoid potential garbage reads if a test checks it before any callback is run.
Done
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |