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

Unified Diff: win8/delegate_execute/delegate_execute_util.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
Index: win8/delegate_execute/delegate_execute_util.cc
diff --git a/win8/delegate_execute/delegate_execute_util.cc b/win8/delegate_execute/delegate_execute_util.cc
index d04c667b9c233e98083c6cba073a7cd956cfe870..70ca3e38b423d75661e3326bed91d8a5229e8f27 100644
--- a/win8/delegate_execute/delegate_execute_util.cc
+++ b/win8/delegate_execute/delegate_execute_util.cc
@@ -16,13 +16,13 @@ CommandLine CommandLineFromParameters(const wchar_t* params) {
string16 command_string(L"noprogram.exe ");
command_string.append(params);
command_line.ParseFromString(command_string);
- command_line.SetProgram(FilePath());
+ command_line.SetProgram(base::FilePath());
}
return command_line;
}
-CommandLine MakeChromeCommandLine(const FilePath& chrome_exe,
+CommandLine MakeChromeCommandLine(const base::FilePath& chrome_exe,
const CommandLine& params,
const string16& argument) {
CommandLine chrome_cmd(params);
« no previous file with comments | « win8/delegate_execute/delegate_execute_util.h ('k') | win8/delegate_execute/delegate_execute_util_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698