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

Unified Diff: remoting/host/win/rdp_client_window.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/launch_process_with_token.cc ('k') | remoting/host/win/rdp_desktop_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/rdp_client_window.cc
diff --git a/remoting/host/win/rdp_client_window.cc b/remoting/host/win/rdp_client_window.cc
index 9a2d36629ae4e096c6316bcacfb80ab1f0caa90b..fe3da3c74d0466b835d39aa751784d1187573c89 100644
--- a/remoting/host/win/rdp_client_window.cc
+++ b/remoting/host/win/rdp_client_window.cc
@@ -240,8 +240,8 @@ LRESULT RdpClientWindow::OnCreate(CREATESTRUCT* create_struct) {
base::win::ScopedComPtr<mstsc::IMsTscSecuredSettings> secured_settings;
base::win::ScopedComPtr<mstsc::IMsRdpClientSecuredSettings> secured_settings2;
base::win::ScopedBstr server_name(
- UTF8ToUTF16(server_endpoint_.ToStringWithoutPort()).c_str());
- base::win::ScopedBstr terminal_id(UTF8ToUTF16(terminal_id_).c_str());
+ base::UTF8ToUTF16(server_endpoint_.ToStringWithoutPort()).c_str());
+ base::win::ScopedBstr terminal_id(base::UTF8ToUTF16(terminal_id_).c_str());
// Create the child window that actually hosts the ActiveX control.
RECT rect = { 0, 0, screen_size_.width(), screen_size_.height() };
« no previous file with comments | « remoting/host/win/launch_process_with_token.cc ('k') | remoting/host/win/rdp_desktop_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698