| Index: third_party/WebKit/Source/platform/text/PlatformLocale.cpp
|
| diff --git a/third_party/WebKit/Source/platform/text/PlatformLocale.cpp b/third_party/WebKit/Source/platform/text/PlatformLocale.cpp
|
| index 7c984cf85f4e923177ab4cb8e5b6c4ce6108a610..6ba7a1711fb31c5d74a82ce91082a54e50f46911 100644
|
| --- a/third_party/WebKit/Source/platform/text/PlatformLocale.cpp
|
| +++ b/third_party/WebKit/Source/platform/text/PlatformLocale.cpp
|
| @@ -424,11 +424,11 @@ String Locale::localizedDecimalSeparator()
|
|
|
| String Locale::formatDateTime(const DateComponents& date, FormatType formatType)
|
| {
|
| - if (date.type() == DateComponents::Invalid)
|
| + if (date.getType() == DateComponents::Invalid)
|
| return String();
|
|
|
| DateTimeStringBuilder builder(*this, date);
|
| - switch (date.type()) {
|
| + switch (date.getType()) {
|
| case DateComponents::Time:
|
| builder.build(formatType == FormatTypeShort ? shortTimeFormat() : timeFormat());
|
| break;
|
|
|