cdesouza-chromium
eff677dd37
[IWYU] Dropping several superfluous std inclusions (#32803)
This PR removes several superfluous inclusions for `<map>`, `<vector>`,
and `<string>`. This is a mechanical change.
```bash
git ls-files components | grep '\.h$' | xargs grep -l '<vector>$' | \
xargs grep -L std::vector | \
xargs ../tools/add_header.py --remove --header '<vector>'
git ls-files components | grep '\.h$' | xargs grep -l '<string>$' | \
xargs grep -L std::vector | xargs grep -L std::npos | \
xargs ../tools/add_header.py --remove --header '<string>'
git ls-files components | grep '\.h$' | xargs grep -l '<map>$' | \
xargs grep -L std::map | xargs grep -L std::multimap | \
xargs ../tools/add_header.py --remove --header '<map>'
```
Bug: https://github.com/brave/brave-browser/issues/42212
2025-12-15 07:58:59 +00:00
..
2025-07-01 17:37:39 -07:00
2025-11-11 07:00:07 +00:00
2025-12-15 07:58:59 +00:00
2025-06-23 19:03:15 +07:00