Hi Blink devs,
I'm happy to announce that all the code of wtf/ has been moved to platform/wtf/, and there are only forwarding headers left in wtf/ now.
I would like to start replacing all the existing #include "wtf/XXX.h" to #include "platform/wtf/XXX.h" this week. Along with this change, I'll run clang-format on all affected files, and this will make those files conform to Chromium-style #include order (#include <XXX> first, then #include "YYY"). See also Nico's previous announcement:
https://groups.google.com/a/chromium.org/d/msg/blink-dev/w0b63ZHuxgo/t3YnK9PtBQAJ
You don't have to manually update the existing #include lines. I'll rewrite all the existing references, so don't worry about them. You may receive code reviews, though :)
If you introduce a new #include to a WTF header, please be sure to use the new directory: i.e. #include "platform/wtf/XXX.h". I'm planning to place a DEPS rule in each Blink module to forbid including the old directory, after the conversion is done.
If there's any concern about this plan, please let me know ASAP. Thanks for your cooperation!
Thanks,
Yuta