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

Side by Side Diff: source/common/servrbf.cpp

Issue 1621843002: ICU 56 update step 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/icu.git@561
Patch Set: Created 4 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/common/servnotf.h ('k') | source/common/servslkf.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) 2001-2005, International Business Machines Corporation and * 3 * Copyright (C) 2001-2014, International Business Machines Corporation and *
4 * others. All Rights Reserved. * 4 * others. All Rights Reserved. *
5 ******************************************************************************* 5 *******************************************************************************
6 * 6 *
7 ******************************************************************************* 7 *******************************************************************************
8 */ 8 */
9 #include "unicode/utypes.h" 9 #include "unicode/utypes.h"
10 10
11 #if !UCONFIG_NO_SERVICE 11 #if !UCONFIG_NO_SERVICE
12 12
13 #include "unicode/resbund.h" 13 #include "unicode/resbund.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 return new ResourceBundle(pkg, loc, status); 66 return new ResourceBundle(pkg, loc, status);
67 } 67 }
68 return NULL; 68 return NULL;
69 } 69 }
70 70
71 #ifdef SERVICE_DEBUG 71 #ifdef SERVICE_DEBUG
72 UnicodeString& 72 UnicodeString&
73 ICUResourceBundleFactory::debug(UnicodeString& result) const 73 ICUResourceBundleFactory::debug(UnicodeString& result) const
74 { 74 {
75 LocaleKeyFactory::debug(result); 75 LocaleKeyFactory::debug(result);
76 result.append(", bundle: "); 76 result.append((UnicodeString)", bundle: ");
77 return result.append(_bundleName); 77 return result.append(_bundleName);
78 } 78 }
79 79
80 UnicodeString& 80 UnicodeString&
81 ICUResourceBundleFactory::debugClass(UnicodeString& result) const 81 ICUResourceBundleFactory::debugClass(UnicodeString& result) const
82 { 82 {
83 return result.append("ICUResourceBundleFactory"); 83 return result.append((UnicodeString)"ICUResourceBundleFactory");
84 } 84 }
85 #endif 85 #endif
86 86
87 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ICUResourceBundleFactory) 87 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ICUResourceBundleFactory)
88 88
89 U_NAMESPACE_END 89 U_NAMESPACE_END
90 90
91 /* !UCONFIG_NO_SERVICE */ 91 /* !UCONFIG_NO_SERVICE */
92 #endif 92 #endif
93 93
94 94
OLDNEW
« no previous file with comments | « source/common/servnotf.h ('k') | source/common/servslkf.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698