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

Side by Side Diff: source/common/servslkf.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/servrbf.cpp ('k') | source/common/sharedobject.h » ('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-2014, 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
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 result.put(_id, (void*)this, status); 90 result.put(_id, (void*)this, status);
91 } 91 }
92 } 92 }
93 } 93 }
94 94
95 #ifdef SERVICE_DEBUG 95 #ifdef SERVICE_DEBUG
96 UnicodeString& 96 UnicodeString&
97 SimpleLocaleKeyFactory::debug(UnicodeString& result) const 97 SimpleLocaleKeyFactory::debug(UnicodeString& result) const
98 { 98 {
99 LocaleKeyFactory::debug(result); 99 LocaleKeyFactory::debug(result);
100 result.append(", id: "); 100 result.append((UnicodeString)", id: ");
101 result.append(_id); 101 result.append(_id);
102 result.append(", kind: "); 102 result.append((UnicodeString)", kind: ");
103 result.append(_kind); 103 result.append(_kind);
104 return result; 104 return result;
105 } 105 }
106 106
107 UnicodeString& 107 UnicodeString&
108 SimpleLocaleKeyFactory::debugClass(UnicodeString& result) const 108 SimpleLocaleKeyFactory::debugClass(UnicodeString& result) const
109 { 109 {
110 return result.append("SimpleLocaleKeyFactory"); 110 return result.append((UnicodeString)"SimpleLocaleKeyFactory");
111 } 111 }
112 #endif 112 #endif
113 113
114 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SimpleLocaleKeyFactory) 114 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(SimpleLocaleKeyFactory)
115 115
116 U_NAMESPACE_END 116 U_NAMESPACE_END
117 117
118 /* !UCONFIG_NO_SERVICE */ 118 /* !UCONFIG_NO_SERVICE */
119 #endif 119 #endif
120 120
121 121
OLDNEW
« no previous file with comments | « source/common/servrbf.cpp ('k') | source/common/sharedobject.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698