| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "platform/text/PlatformLocale.h" | 35 #include "platform/text/PlatformLocale.h" |
| 36 #include "wtf/Forward.h" | 36 #include "wtf/Forward.h" |
| 37 #include "wtf/text/CString.h" | 37 #include "wtf/text/CString.h" |
| 38 #include "wtf/text/WTFString.h" | 38 #include "wtf/text/WTFString.h" |
| 39 #include <memory> | 39 #include <memory> |
| 40 #include <unicode/udat.h> | 40 #include <unicode/udat.h> |
| 41 #include <unicode/unum.h> | 41 #include <unicode/unum.h> |
| 42 | 42 |
| 43 namespace blink { | 43 namespace blink { |
| 44 | 44 |
| 45 // We should use this class only for LocalizedNumberICU.cpp, LocalizedDateICU.cp
p, | 45 // We should use this class only for LocalizedNumberICU.cpp, |
| 46 // and LocalizedNumberICUTest.cpp. | 46 // LocalizedDateICU.cpp, and LocalizedNumberICUTest.cpp. |
| 47 class PLATFORM_EXPORT LocaleICU : public Locale { | 47 class PLATFORM_EXPORT LocaleICU : public Locale { |
| 48 public: | 48 public: |
| 49 static std::unique_ptr<LocaleICU> create(const char* localeString); | 49 static std::unique_ptr<LocaleICU> create(const char* localeString); |
| 50 ~LocaleICU() override; | 50 ~LocaleICU() override; |
| 51 | 51 |
| 52 const Vector<String>& weekDayShortLabels() override; | 52 const Vector<String>& weekDayShortLabels() override; |
| 53 unsigned firstDayOfWeek() override; | 53 unsigned firstDayOfWeek() override; |
| 54 bool isRTL() override; | 54 bool isRTL() override; |
| 55 String dateFormat() override; | 55 String dateFormat() override; |
| 56 String monthFormat() override; | 56 String monthFormat() override; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 UDateFormat* m_shortTimeFormat; | 110 UDateFormat* m_shortTimeFormat; |
| 111 Vector<String> m_shortMonthLabels; | 111 Vector<String> m_shortMonthLabels; |
| 112 Vector<String> m_standAloneMonthLabels; | 112 Vector<String> m_standAloneMonthLabels; |
| 113 Vector<String> m_shortStandAloneMonthLabels; | 113 Vector<String> m_shortStandAloneMonthLabels; |
| 114 Vector<String> m_timeAMPMLabels; | 114 Vector<String> m_timeAMPMLabels; |
| 115 bool m_didCreateTimeFormat; | 115 bool m_didCreateTimeFormat; |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 } // namespace blink | 118 } // namespace blink |
| 119 #endif | 119 #endif |
| OLD | NEW |