Index: chrome/plugin/chrome_plugin_host.cc |
diff --git a/chrome/plugin/chrome_plugin_host.cc b/chrome/plugin/chrome_plugin_host.cc |
index a784ccc8afbfa2759ec358f028b2b9ec087f43fa..d37a0f51e60b7f0b0be8e113b301126763845797 100644 |
--- a/chrome/plugin/chrome_plugin_host.cc |
+++ b/chrome/plugin/chrome_plugin_host.cc |
@@ -440,8 +440,8 @@ int STDCALL CPB_GetBrowsingContextInfo( |
if (buf_size < sizeof(char*)) |
return sizeof(char*); |
- std::wstring wretval = webkit_glue::GetWebKitLocale(); |
- *static_cast<char**>(buf) = CPB_StringDup(CPB_Alloc, WideToUTF8(wretval)); |
+ std::string retval = webkit_glue::GetWebKitLocale(); |
+ *static_cast<char**>(buf) = CPB_StringDup(CPB_Alloc, retval); |
return CPERR_SUCCESS; |
} |
} |