In preparation for moving the WTF code out of JavaScriptCore, support for including WTF headers as "JavaScriptCore.framework private headers" will shortly be removed: #include <JavaScriptCore/Unicode.h> // No longer possible #include <wtf/unicode/Unicode.h> // The proper way.
Similarly: #include "PassRefPtr.h" // Never valid, except from PassRefPtr.cpp #include <wtf/PassRefPtr.h> // The proper include, even from JavaScriptCore or other WTF headers. For any interested in following along at home, see: https://bugs.webkit.org/show_bug.cgi?id=80363 The change is being made in coordination with Mark Rowe so as to avoid breaking any possible Apple internal builds. Currently all EWS bots are green, and I plan to watch the buildbots when landing. Let me know if I missed anything. Thanks! -eric _______________________________________________ webkit-dev mailing list [email protected] http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev

