| Code-Review | +1 |
Deja vu: https://chromium-review.googlesource.com/c/chromium/src/+/7499345
...I guess it's better to land it this time, so you don't do it a third time.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Deja vu: https://chromium-review.googlesource.com/c/chromium/src/+/7499345
...I guess it's better to land it this time, so you don't do it a third time.
Oh, sorry, I didn't realize I had a duplicate of a previous CL!
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |
Replace `std::unordered_map` with `absl::flat_hash_map`.
The Chromium containers guide
(https://chromium.googlesource.com/chromium/src/+/HEAD/base/containers/README.md)
recommends using `absl::flat_hash_map` as a default map choice instead
of `std::unordered_map` when pointer stability isn't needed, and
`absl::node_hash_map` when it is. Both will still generally perform
better and require less overhead than `std::unordered_map`.
| Inspect html for hidden footers to help with email filtering. To unsubscribe visit settings. |