Index: content/ppapi_plugin/broker_process_dispatcher.cc |
diff --git a/content/ppapi_plugin/broker_process_dispatcher.cc b/content/ppapi_plugin/broker_process_dispatcher.cc |
index 5f1ff63a0c59ed7d0e2290c832d76d05cc9cbc4a..35d5b9d48e639ea0cfd5a6e6143115e8ca96c440 100644 |
--- a/content/ppapi_plugin/broker_process_dispatcher.cc |
+++ b/content/ppapi_plugin/broker_process_dispatcher.cc |
@@ -22,7 +22,7 @@ const int kBrokerReleaseTimeSeconds = 30; |
std::string ConvertPluginDataPath(const base::FilePath& plugin_data_path) { |
// The string is always 8-bit, convert on Windows. |
#if defined(OS_WIN) |
- return WideToUTF8(plugin_data_path.value()); |
+ return base::WideToUTF8(plugin_data_path.value()); |
#else |
return plugin_data_path.value(); |
#endif |