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

Unified Diff: remoting/host/win/wts_session_process_delegate.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/wts_session_process_delegate.h ('k') | rlz/lib/recursive_cross_process_lock_posix.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/win/wts_session_process_delegate.cc
diff --git a/remoting/host/win/wts_session_process_delegate.cc b/remoting/host/win/wts_session_process_delegate.cc
index 88ff519b3e89c3272d883b31986898969276da14..8c7d552fe487f69b86373c27874197f64d544eab 100644
--- a/remoting/host/win/wts_session_process_delegate.cc
+++ b/remoting/host/win/wts_session_process_delegate.cc
@@ -56,7 +56,7 @@ class WtsSessionProcessDelegate::Core
// Stop() method has been called.
Core(scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
- const FilePath& binary_path,
+ const base::FilePath& binary_path,
bool launch_elevated,
const std::string& channel_security);
@@ -110,7 +110,7 @@ class WtsSessionProcessDelegate::Core
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
// Path to the worker process binary.
- FilePath binary_path_;
+ base::FilePath binary_path_;
// The server end of the IPC channel used to communicate to the worker
// process.
@@ -151,7 +151,7 @@ class WtsSessionProcessDelegate::Core
WtsSessionProcessDelegate::Core::Core(
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
- const FilePath& binary_path,
+ const base::FilePath& binary_path,
bool launch_elevated,
const std::string& channel_security)
: main_task_runner_(main_task_runner),
@@ -249,7 +249,7 @@ bool WtsSessionProcessDelegate::Core::LaunchProcess(
}
// Construct the helper binary name.
- FilePath daemon_binary;
+ base::FilePath daemon_binary;
if (!GetInstalledBinaryPath(kDaemonBinaryName, &daemon_binary))
return false;
@@ -485,7 +485,7 @@ void WtsSessionProcessDelegate::Core::OnJobNotification(DWORD message,
WtsSessionProcessDelegate::WtsSessionProcessDelegate(
scoped_refptr<base::SingleThreadTaskRunner> main_task_runner,
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
- const FilePath& binary_path,
+ const base::FilePath& binary_path,
uint32 session_id,
bool launch_elevated,
const std::string& channel_security) {
« no previous file with comments | « remoting/host/win/wts_session_process_delegate.h ('k') | rlz/lib/recursive_cross_process_lock_posix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698