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

Unified Diff: base/command_line.h

Issue 18254010: IPC fuzzer child process component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: no windows support Created 7 years, 4 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 | « no previous file | base/command_line.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/command_line.h
diff --git a/base/command_line.h b/base/command_line.h
index ed46c4f0d13c34778d390e86827b8e6db307d186..59f063752de6ab1a84ca8974525344f937db749f 100644
--- a/base/command_line.h
+++ b/base/command_line.h
@@ -123,7 +123,11 @@ class BASE_EXPORT CommandLine {
void AppendSwitchASCII(const std::string& switch_string,
const std::string& value);
- // Copy a set of switches (and any values) from another command line.
+ // Copy a switch (and a value, if any) from another command line.
+ void CopySwitchFrom(const CommandLine& source,
+ const char* switch_name);
+
+ // Same as CopySwitchFrom, but for multiple switches.
// Commonly used when launching a subprocess.
void CopySwitchesFrom(const CommandLine& source,
brettw 2013/09/03 20:21:18 I don't think this is a very commonly used functio
const char* const switches[],
« no previous file with comments | « no previous file | base/command_line.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698