Index: win8/delegate_execute/delegate_execute_util.h |
diff --git a/win8/delegate_execute/delegate_execute_util.h b/win8/delegate_execute/delegate_execute_util.h |
index 4f32e9697ca8800161149736a159b9381d900f79..eee033a4fa8da2778966cf31179d1c3aec0ab8a6 100644 |
--- a/win8/delegate_execute/delegate_execute_util.h |
+++ b/win8/delegate_execute/delegate_execute_util.h |
@@ -15,13 +15,13 @@ class FilePath; |
namespace delegate_execute { |
// Returns a CommandLine with an empty program parsed from |params|. |
-CommandLine CommandLineFromParameters(const wchar_t* params); |
+base::CommandLine CommandLineFromParameters(const wchar_t* params); |
// Returns a CommandLine to launch |chrome_exe| with all switches and arguments |
// from |params| plus an optional |argument|. |
-CommandLine MakeChromeCommandLine(const base::FilePath& chrome_exe, |
- const CommandLine& params, |
- const base::string16& argument); |
+base::CommandLine MakeChromeCommandLine(const base::FilePath& chrome_exe, |
+ const base::CommandLine& params, |
+ const base::string16& argument); |
// Returns a properly quoted command-line string less the program (argv[0]) |
// containing |switch|. |