Index: sandbox/win/wow_helper/wow_helper.cc |
diff --git a/sandbox/win/wow_helper/wow_helper.cc b/sandbox/win/wow_helper/wow_helper.cc |
index 2a27a85e91e9c482d2f5c3208651018c0296bc16..847190ac8b8b43f1ab43b9ff2a4100c7eaa319e6 100644 |
--- a/sandbox/win/wow_helper/wow_helper.cc |
+++ b/sandbox/win/wow_helper/wow_helper.cc |
@@ -27,7 +27,7 @@ inline typename string_type::value_type* WriteInto(string_type* str, |
} |
// Grabbed from base/string_util.cc |
-std::string WideToMultiByte(const std::wstring& wide, UINT code_page) { |
+std::string WideToMultiByte(const base::string16& wide, UINT code_page) { |
if (wide.length() == 0) |
return std::string(); |
@@ -46,7 +46,7 @@ std::string WideToMultiByte(const std::wstring& wide, UINT code_page) { |
} |
// Grabbed from base/string_util.cc |
-std::string WideToUTF8(const std::wstring& wide) { |
+std::string WideToUTF8(const base::string16& wide) { |
return WideToMultiByte(wide, CP_UTF8); |
} |