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

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

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 months 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.h ('k') | remoting/host/win/unprivileged_process_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/launch_process_with_token.cc
diff --git a/remoting/host/win/launch_process_with_token.cc b/remoting/host/win/launch_process_with_token.cc
index 51b390034fe7be605170b3fcd4ea06d8d2dcecf5..fffa9830f7ec6cf97d179b19f0d240e2b032fa1c 100644
--- a/remoting/host/win/launch_process_with_token.cc
+++ b/remoting/host/win/launch_process_with_token.cc
@@ -64,7 +64,7 @@ bool ConnectToExecutionServer(uint32 session_id,
// Use winsta!WinStationQueryInformationW() to determine the process creation
// pipe name for the session.
- FilePath winsta_path(base::GetNativeLibraryName(UTF8ToUTF16("winsta")));
+ base::FilePath winsta_path(base::GetNativeLibraryName(UTF8ToUTF16("winsta")));
base::ScopedNativeLibrary winsta(winsta_path);
if (winsta.is_valid()) {
PWINSTATIONQUERYINFORMATIONW win_station_query_information =
@@ -293,7 +293,7 @@ bool ReceiveCreateProcessResponse(
// Sends a remote process create request to the execution server.
bool SendCreateProcessRequest(
HANDLE pipe,
- const FilePath::StringType& application_name,
+ const base::FilePath::StringType& application_name,
const CommandLine::StringType& command_line,
DWORD creation_flags,
const char16* desktop_name) {
@@ -376,7 +376,7 @@ bool SendCreateProcessRequest(
// OS functionality and will likely not work on anything but XP or W2K3.
bool CreateRemoteSessionProcess(
uint32 session_id,
- const FilePath::StringType& application_name,
+ const base::FilePath::StringType& application_name,
const CommandLine::StringType& command_line,
DWORD creation_flags,
const char16* desktop_name,
@@ -552,7 +552,7 @@ bool CreateSessionToken(uint32 session_id, ScopedHandle* token_out) {
return true;
}
-bool LaunchProcessWithToken(const FilePath& binary,
+bool LaunchProcessWithToken(const base::FilePath& binary,
const CommandLine::StringType& command_line,
HANDLE user_token,
SECURITY_ATTRIBUTES* process_attributes,
@@ -562,7 +562,7 @@ bool LaunchProcessWithToken(const FilePath& binary,
const char16* desktop_name,
ScopedHandle* process_out,
ScopedHandle* thread_out) {
- FilePath::StringType application_name = binary.value();
+ base::FilePath::StringType application_name = binary.value();
STARTUPINFOW startup_info;
memset(&startup_info, 0, sizeof(startup_info));
« no previous file with comments | « remoting/host/win/launch_process_with_token.h ('k') | remoting/host/win/unprivileged_process_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698