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

Unified Diff: content/ppapi_plugin/broker_process_dispatcher.cc

Issue 121033002: Update uses of UTF conversions in content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « content/common/webplugininfo_unittest.cc ('k') | content/public/common/page_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « content/common/webplugininfo_unittest.cc ('k') | content/public/common/page_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698