diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /intl/locale/nsIDateTimeFormat.cpp | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'intl/locale/nsIDateTimeFormat.cpp')
-rw-r--r-- | intl/locale/nsIDateTimeFormat.cpp | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/intl/locale/nsIDateTimeFormat.cpp b/intl/locale/nsIDateTimeFormat.cpp new file mode 100644 index 000000000..263b3abb4 --- /dev/null +++ b/intl/locale/nsIDateTimeFormat.cpp @@ -0,0 +1,39 @@ +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#include "nsIDateTimeFormat.h" +#include "mozilla/RefPtr.h" + +#if defined(XP_MACOSX) +#define USE_MAC_LOCALE +#elif defined(XP_UNIX) +#define USE_UNIX_LOCALE +#endif + +#ifdef XP_WIN +#include "windows/nsDateTimeFormatWin.h" +#endif +#ifdef USE_UNIX_LOCALE +#include "unix/nsDateTimeFormatUnix.h" +#endif +#ifdef USE_MAC_LOCALE +#include "mac/nsDateTimeFormatMac.h" +#endif + +using mozilla::MakeAndAddRef; + +/*static*/ already_AddRefed<nsIDateTimeFormat> +nsIDateTimeFormat::Create() +{ +#ifdef XP_WIN + return MakeAndAddRef<nsDateTimeFormatWin>(); +#elif defined(USE_UNIX_LOCALE) + return MakeAndAddRef<nsDateTimeFormatUnix>(); +#elif defined(USE_MAC_LOCALE) + return MakeAndAddRef<nsDateTimeFormatMac>(); +#else + return nullptr; +#endif +} |