diff options
Diffstat (limited to 'remoting/host/win/wts_session_process_delegate.cc')
-rw-r--r-- | remoting/host/win/wts_session_process_delegate.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/win/wts_session_process_delegate.cc b/remoting/host/win/wts_session_process_delegate.cc index 0781649..f19b37d 100644 --- a/remoting/host/win/wts_session_process_delegate.cc +++ b/remoting/host/win/wts_session_process_delegate.cc @@ -387,7 +387,7 @@ void WtsSessionProcessDelegate::Core::DoLaunchProcess() { // Pass the name of the IPC channel to use. command_line.AppendSwitchNative(kDaemonPipeSwitchName, - UTF8ToWide(channel_name)); + base::UTF8ToWide(channel_name)); // Try to launch the process. ScopedHandle worker_process; @@ -399,7 +399,7 @@ void WtsSessionProcessDelegate::Core::DoLaunchProcess() { NULL, false, CREATE_SUSPENDED | CREATE_BREAKAWAY_FROM_JOB, - UTF8ToUTF16(kDefaultDesktopName).c_str(), + base::UTF8ToUTF16(kDefaultDesktopName).c_str(), &worker_process, &worker_thread)) { ReportFatalError(); |