I'm cleaning up the NS format strings for printf (
https://crrev.com/c/8135159), but I'm wondering where we are with string formatting.
Right now, base::StringPrintf is just a wrapper around absl::StrFormat and there's a bug (
https://crbug.com/40241565) to remove the wrapper. But StrFormat is just as memory-unsafe as StringPrintf was.
We also have base::StrCat but that only works for string-like things, so you need to throw an occasional base::NumberToString in there. absl::StrCat is better and doesn't require that.
Given the push for memory safety, is there a path towards picking one and migrating?
Avi