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

Unified Diff: remoting/host/win/wts_terminal_monitor.cc

Issue 121123002: Update uses of UTF conversions in ppapi/, printing/, remoting/, rlz/, sandbox/, skia/, sql/, sync/,… (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 | « remoting/host/win/wts_session_process_delegate.cc ('k') | rlz/ios/lib/machine_id_ios.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/wts_terminal_monitor.cc
diff --git a/remoting/host/win/wts_terminal_monitor.cc b/remoting/host/win/wts_terminal_monitor.cc
index d9d373206a867670ee50ab9578fd7b8d8ba239ed..6c654791fd6f17cd6364238588dccf6de6fd19ec 100644
--- a/remoting/host/win/wts_terminal_monitor.cc
+++ b/remoting/host/win/wts_terminal_monitor.cc
@@ -42,8 +42,9 @@ bool WtsTerminalMonitor::LookupTerminalId(uint32 session_id,
return false;
}
- bool result = WideToUTF8(working_directory, (bytes / sizeof(wchar_t)) - 1,
- terminal_id);
+ bool result = base::WideToUTF8(working_directory,
+ (bytes / sizeof(wchar_t)) - 1,
+ terminal_id);
WTSFreeMemory(working_directory);
return result;
}
« no previous file with comments | « remoting/host/win/wts_session_process_delegate.cc ('k') | rlz/ios/lib/machine_id_ios.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698