http://trac.webkit.org/changeset/163856 broke the EFL build, but it was reverted, because it broke regression tests on Mac. This bug is to fix the EFL build before or after relanding the patch in bug128569 cc Grzegorz who implemented the rest of TextCheckerEfl.cpp and other EFL developers.
Thanks. Seems that we need to apply StringView to TextCheckerEfl.cpp due to TextChecker.h is likely to use it. I'll take care of it.
Created attachment 223962 [details] Patch
Comment on attachment 223962 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=223962&action=review The patch in bug 128569 was rolled out, so this won't be needed until it's re-landed. > Source/WebKit2/UIProcess/efl/TextCheckerEfl.cpp:124 > +static unsigned nextWordOffset(const StringView& stringView, unsigned currentOffset) StringView should always be passed by value since it's such a small struct that it fits in two register.
Created attachment 224051 [details] patch for landing
We don't need it anymore.