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

Unified Diff: xfa/fxbarcode/BC_UtilCodingConvert.h

Issue 2649563003: Replace CFX_ByteArray with CFX_ArrayTemplate<uint8_t> (Closed)
Patch Set: re-upload Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « xfa/fgas/layout/fgas_rtfbreak.h ('k') | xfa/fxbarcode/BC_UtilCodingConvert.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: xfa/fxbarcode/BC_UtilCodingConvert.h
diff --git a/xfa/fxbarcode/BC_UtilCodingConvert.h b/xfa/fxbarcode/BC_UtilCodingConvert.h
index 698cd857d7b95615145bfadb7b67a0212a570246..859eeea1e9c898c39ac0f6989a65384c27a852d6 100644
--- a/xfa/fxbarcode/BC_UtilCodingConvert.h
+++ b/xfa/fxbarcode/BC_UtilCodingConvert.h
@@ -17,8 +17,10 @@ class CBC_UtilCodingConvert {
CFX_ByteString& result);
static void LocaleToUtf8(const CFX_ByteString& source,
CFX_ByteString& result);
- static void LocaleToUtf8(const CFX_ByteString& source, CFX_ByteArray& result);
- static void Utf8ToLocale(const CFX_ByteArray& source, CFX_ByteString& result);
+ static void LocaleToUtf8(const CFX_ByteString& source,
+ CFX_ArrayTemplate<uint8_t>& result);
+ static void Utf8ToLocale(const CFX_ArrayTemplate<uint8_t>& source,
+ CFX_ByteString& result);
static void Utf8ToLocale(const uint8_t* source,
int32_t count,
CFX_ByteString& result);
« no previous file with comments | « xfa/fgas/layout/fgas_rtfbreak.h ('k') | xfa/fxbarcode/BC_UtilCodingConvert.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698