summaryrefslogtreecommitdiffstats
path: root/base/sys_string_conversions.h
diff options
context:
space:
mode:
authormmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-07 19:31:16 +0000
committermmentovai@google.com <mmentovai@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-07 19:31:16 +0000
commit47944fdd48561ab89248f23166d0b0dc8de8be7e (patch)
treed596be86ccccabf8f0d5851fe2365f0109290b6a /base/sys_string_conversions.h
parenta191e01106d91c8e0513f99dacdcfac8b9705c9f (diff)
downloadchromium_src-47944fdd48561ab89248f23166d0b0dc8de8be7e.zip
chromium_src-47944fdd48561ab89248f23166d0b0dc8de8be7e.tar.gz
chromium_src-47944fdd48561ab89248f23166d0b0dc8de8be7e.tar.bz2
Fix sys_string_conversions for use on the Mac.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@528 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/sys_string_conversions.h')
-rw-r--r--base/sys_string_conversions.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/sys_string_conversions.h b/base/sys_string_conversions.h
index f1dae58..fc0a5eb 100644
--- a/base/sys_string_conversions.h
+++ b/base/sys_string_conversions.h
@@ -54,8 +54,8 @@ std::wstring SysNativeMBToWide(const std::string& native_mb);
#if defined(OS_WIN)
-// Converts between an 8-bit string into a wide string, using the given
-// code page. The code page identifier is one accepted by the Windows function
+// Converts between 8-bit and wide strings, using the given code page. The
+// code page identifier is one accepted by the Windows function
// MultiByteToWideChar().
std::wstring SysMultiByteToWide(const std::string& mb, uint32 code_page);
std::string SysWideToMultiByte(const std::wstring& wide, uint32 code_page);