Chromium Code Reviews| Index: third_party/WebKit/Source/wtf/text/Collator.h |
| diff --git a/third_party/WebKit/Source/wtf/text/Collator.h b/third_party/WebKit/Source/wtf/text/Collator.h |
| index 6ec86c59385fa8492186f246019e329fb89b3557..58ec7448a7fb5b6d97159ce002855da7f18c588b 100644 |
| --- a/third_party/WebKit/Source/wtf/text/Collator.h |
| +++ b/third_party/WebKit/Source/wtf/text/Collator.h |
| @@ -49,9 +49,10 @@ class WTF_EXPORT Collator { |
| // From ICU's uloc.h (ULOC_FULLNAME_CAPACITY) |
| static const size_t ulocFullnameCapacity = 157; |
| - Collator( |
| - const char* |
| - locale); // Parsing is lenient; e.g. language identifiers (such as "en-US") are accepted, too. |
| + // Parsing is lenient; e.g. language identifiers (such as "en-US") are |
| + // accepted, too. |
| + Collator(const char* locale); |
|
dcheng
2016/10/01 03:06:14
If we just add explicit here, will things still bu
Nico
2016/10/01 16:42:24
I don't know. I can try in a separate CL.
Nico
2016/10/01 16:54:51
here: https://codereview.chromium.org/2383163003
|
| + |
| ~Collator(); |
| void setOrderLowerFirst(bool); |