Changeset 194041 in webkit


Ignore:
Timestamp:
Dec 14, 2015 11:41:45 AM (8 years ago)
Author:
Sukolsak Sakshuwong
Message:

Make UCharIterator createIterator(StringView) visible to other classes
https://bugs.webkit.org/show_bug.cgi?id=151917

Reviewed by Darin Adler.

Make UCharIterator createIterator(StringView) in CollatorICU.cpp visible
to other classes so that future patches that will ucol_strcollIter
(including Bug 147604) can use it.

  • wtf/unicode/Collator.h:
  • wtf/unicode/icu/CollatorICU.cpp:

(WTF::createIterator):

Location:
trunk/Source/WTF
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r194037 r194041  
     12015-12-14  Sukolsak Sakshuwong  <sukolsak@gmail.com>
     2
     3        Make UCharIterator createIterator(StringView) visible to other classes
     4        https://bugs.webkit.org/show_bug.cgi?id=151917
     5
     6        Reviewed by Darin Adler.
     7
     8        Make UCharIterator createIterator(StringView) in CollatorICU.cpp visible
     9        to other classes so that future patches that will ucol_strcollIter
     10        (including Bug 147604) can use it.
     11
     12        * wtf/unicode/Collator.h:
     13        * wtf/unicode/icu/CollatorICU.cpp:
     14        (WTF::createIterator):
     15
    1162015-12-14  David Kilzer  <ddkilzer@apple.com>
    217
  • trunk/Source/WTF/wtf/unicode/Collator.h

    r165676 r194041  
    3333#include <wtf/Noncopyable.h>
    3434
     35struct UCharIterator;
    3536struct UCollator;
    3637
     
    6869};
    6970
     71UCharIterator createIterator(StringView);
     72
    7073#endif
    7174
  • trunk/Source/WTF/wtf/unicode/icu/CollatorICU.cpp

    r188642 r194041  
    237237}
    238238
    239 static UCharIterator createIterator(StringView string)
     239UCharIterator createIterator(StringView string)
    240240{
    241241    if (string.is8Bit())
Note: See TracChangeset for help on using the changeset viewer.