Index: base/command_line.h |
diff --git a/base/command_line.h b/base/command_line.h |
index b8bbba92e224ee8934f3df6d030b54980207596a..70342cc14c00b5c95b9d63bfb83b4684d4295d9b 100644 |
--- a/base/command_line.h |
+++ b/base/command_line.h |
@@ -135,6 +135,8 @@ class CommandLine { |
void AppendSwitchASCII(const std::string& switch_string, |
const std::string& value); |
+ void AppendSwitches(const CommandLine& other); |
+ |
// Append an argument to the command line. |
// Note on quoting: the argument will be quoted properly such that it is |
// interpreted as one argument to the target command. |
@@ -144,6 +146,8 @@ class CommandLine { |
void AppendArgPath(const FilePath& value); |
void AppendArgNative(const StringType& value); |
+ void AppendArgs(const CommandLine& other); |
+ |
// Append the arguments from another command line to this one. |
// If |include_program| is true, include |other|'s program as well. |
void AppendArguments(const CommandLine& other, |