Since
https://chromium-review.googlesource.com/c/chromium/src/+/5208390 //net has been using the
std::pair constructor with type inference instead of using
std::make_pair. For consistency, I'd like everyone to use
std::pair from now on in //net. It's simple. Instead of
std::make_pair(7, "words")
write
std::pair(7, "words")
which does the same thing.