Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Side by Side Diff: source/i18n/wintzimpl.cpp

Issue 845603002: Update ICU to 54.1 step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@master
Patch Set: remove unusued directories Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « source/i18n/winnmfmt.cpp ('k') | source/i18n/zonemeta.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ******************************************************************************** 2 ********************************************************************************
3 * Copyright (C) 2009-2011, International Business Machines 3 * Copyright (C) 2009-2013, International Business Machines
4 * Corporation and others. All Rights Reserved. 4 * Corporation and others. All Rights Reserved.
5 ******************************************************************************** 5 ********************************************************************************
6 * 6 *
7 * File WINTZIMPL.CPP 7 * File WINTZIMPL.CPP
8 * 8 *
9 ******************************************************************************** 9 ********************************************************************************
10 */ 10 */
11 11
12 #include "unicode/utypes.h" 12 #include "unicode/utypes.h"
13 13
14 #if U_PLATFORM_HAS_WIN32_API 14 #if U_PLATFORM_HAS_WIN32_API && !UCONFIG_NO_FORMATTING
15 15
16 #include "wintzimpl.h" 16 #include "wintzimpl.h"
17 17
18 #include "unicode/unistr.h" 18 #include "unicode/unistr.h"
19 #include "unicode/timezone.h" 19 #include "unicode/timezone.h"
20 #include "unicode/basictz.h" 20 #include "unicode/basictz.h"
21 #include "putilimp.h" 21 #include "putilimp.h"
22 #include "uassert.h" 22 #include "uassert.h"
23 #include "cmemory.h" 23 #include "cmemory.h"
24 24
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length) 148 uprv_getWindowsTimeZoneInfo(TIME_ZONE_INFORMATION *zoneInfo, const UChar *icuid, int32_t length)
149 { 149 {
150 if (getWindowsTimeZoneInfo(zoneInfo, icuid, length)) { 150 if (getWindowsTimeZoneInfo(zoneInfo, icuid, length)) {
151 return TRUE; 151 return TRUE;
152 } else { 152 } else {
153 return FALSE; 153 return FALSE;
154 } 154 }
155 } 155 }
156 156
157 #endif 157 #endif
OLDNEW
« no previous file with comments | « source/i18n/winnmfmt.cpp ('k') | source/i18n/zonemeta.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698