Files
brave-core/components/tor
cdesouza-chromium 68a84b8637 [IWYU] Dropping several superfluous std inclusions (#32830)
This PR removes several superfluous inclusions for <map>, <vector>,
and <string>. This is a mechanical change.

```
git ls-files components | grep '\.cc$' | xargs grep -l '<vector>$' | \
  xargs grep -L std::vector | \
  xargs ../tools/add_header.py --remove --header '<vector>'

git ls-files components | grep '\.cc$' | xargs grep -l '<string>$' | \
  xargs grep -L std::wstring | xargs grep -L std::string | xargs grep -L std::u16string | xargs grep -L std::npos | \
  xargs ../tools/add_header.py --remove --header '<string>'

git ls-files components | grep '\.cc$' | 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-16 14:01:06 +00:00
..