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

Unified Diff: base/command_line.h

Issue 3935001: Rename CommandLine::ARGUMENTS_ONLY to NO_PROGRAM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years, 2 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 ec8714fd9b3055527352ebd7a02aafff85f6f512..a5bdd1a33789e19170c0d71211fdbff385b744a4 100644
--- a/base/command_line.h
+++ b/base/command_line.h
@@ -30,9 +30,10 @@ class InProcessBrowserTest;
class CommandLine {
public:
- // A constructor for CommandLines that are used only to carry arguments.
- enum ArgumentsOnly { ARGUMENTS_ONLY };
- explicit CommandLine(ArgumentsOnly args_only);
+ // A constructor for CommandLines that are used only to carry switches and
+ // arguments.
+ enum NoProgram { NO_PROGRAM };
+ explicit CommandLine(NoProgram no_program);
~CommandLine();
#if defined(OS_WIN)
« 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