Skip to content

Commit edac496

Browse files
FrankYFTangV8 LUCI CQ
authored and
V8 LUCI CQ
committed
Migrate to use the new public getOffsetFromLocal method
This API is the new public one added in ICU 69.1 in unicode-org/icu#1610 Bug: v8:11512 Change-Id: I424e15e6a60edee7c98e6ce55974986f0bb6ab1b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2876368 Commit-Queue: Frank Tang <[email protected]> Reviewed-by: Shu-yu Guo <[email protected]> Cr-Commit-Position: refs/heads/master@{#74428}
1 parent 5b619ef commit edac496

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

src/objects/intl-objects.cc

+5-13
Original file line numberDiff line numberDiff line change
@@ -2027,23 +2027,15 @@ icu::TimeZone* ICUTimezoneCache::GetTimeZone() {
20272027
bool ICUTimezoneCache::GetOffsets(double time_ms, bool is_utc,
20282028
int32_t* raw_offset, int32_t* dst_offset) {
20292029
UErrorCode status = U_ZERO_ERROR;
2030-
// TODO(jshin): ICU TimeZone class handles skipped time differently from
2031-
// Ecma 262 (https://github.com/tc39/ecma262/pull/778) and icu::TimeZone
2032-
// class does not expose the necessary API. Fixing
2033-
// http://bugs.icu-project.org/trac/ticket/13268 would make it easy to
2034-
// implement the proposed spec change. A proposed fix for ICU is
2035-
// https://chromium-review.googlesource.com/851265 .
2036-
// In the meantime, use an internal (still public) API of icu::BasicTimeZone.
2037-
// Once it's accepted by the upstream, get rid of cast. Note that casting
2038-
// TimeZone to BasicTimeZone is safe because we know that icu::TimeZone used
2039-
// here is a BasicTimeZone.
20402030
if (is_utc) {
20412031
GetTimeZone()->getOffset(time_ms, false, *raw_offset, *dst_offset, status);
20422032
} else {
2033+
// Note that casting TimeZone to BasicTimeZone is safe because we know that
2034+
// icu::TimeZone used here is a BasicTimeZone.
20432035
static_cast<const icu::BasicTimeZone*>(GetTimeZone())
2044-
->getOffsetFromLocal(time_ms, icu::BasicTimeZone::kFormer,
2045-
icu::BasicTimeZone::kFormer, *raw_offset,
2046-
*dst_offset, status);
2036+
->getOffsetFromLocal(time_ms, UCAL_TZ_LOCAL_FORMER,
2037+
UCAL_TZ_LOCAL_FORMER, *raw_offset, *dst_offset,
2038+
status);
20472039
}
20482040

20492041
return U_SUCCESS(status);

src/objects/intl-objects.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
#include "unicode/locid.h"
2222
#include "unicode/uversion.h"
2323

24-
#define V8_MINIMUM_ICU_VERSION 68
24+
#define V8_MINIMUM_ICU_VERSION 69
2525

2626
namespace U_ICU_NAMESPACE {
2727
class BreakIterator;

0 commit comments

Comments
 (0)