summaryrefslogtreecommitdiffstats
path: root/remoting/host/win/launch_process_with_token.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/win/launch_process_with_token.cc')
-rw-r--r--remoting/host/win/launch_process_with_token.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/remoting/host/win/launch_process_with_token.cc b/remoting/host/win/launch_process_with_token.cc
index 6cb7e31..f7ce845 100644
--- a/remoting/host/win/launch_process_with_token.cc
+++ b/remoting/host/win/launch_process_with_token.cc
@@ -58,7 +58,8 @@ bool ConnectToExecutionServer(uint32 session_id,
// Use winsta!WinStationQueryInformationW() to determine the process creation
// pipe name for the session.
- base::FilePath winsta_path(base::GetNativeLibraryName(UTF8ToUTF16("winsta")));
+ base::FilePath winsta_path(
+ base::GetNativeLibraryName(base::UTF8ToUTF16("winsta")));
base::ScopedNativeLibrary winsta(winsta_path);
if (winsta.is_valid()) {
PWINSTATIONQUERYINFORMATIONW win_station_query_information =
@@ -80,7 +81,7 @@ bool ConnectToExecutionServer(uint32 session_id,
// Use the default pipe name if we couldn't query its name.
if (pipe_name.empty()) {
- pipe_name = UTF8ToUTF16(
+ pipe_name = base::UTF8ToUTF16(
base::StringPrintf(kCreateProcessDefaultPipeNameFormat, session_id));
}