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

Unified Diff: base/command_line.cc

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 | « base/command_line.h ('k') | chrome/app/chrome_main_uitest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/command_line.cc
diff --git a/base/command_line.cc b/base/command_line.cc
index 2fdc176fad7fd3e7a20427023e2c679f3b273b8b..2e6021dc2ca8634154ea06df94dba65365a7bbf1 100644
--- a/base/command_line.cc
+++ b/base/command_line.cc
@@ -60,7 +60,7 @@ CommandLine::~CommandLine() {
}
#if defined(OS_WIN)
-CommandLine::CommandLine(ArgumentsOnly args_only) {
+CommandLine::CommandLine(NoProgram no_program) {
}
void CommandLine::ParseFromString(const std::wstring& command_line) {
@@ -121,7 +121,7 @@ CommandLine::CommandLine(const FilePath& program) {
}
#elif defined(OS_POSIX)
-CommandLine::CommandLine(ArgumentsOnly args_only) {
+CommandLine::CommandLine(NoProgram no_program) {
// Push an empty argument, because we always assume argv_[0] is a program.
argv_.push_back("");
}
« no previous file with comments | « base/command_line.h ('k') | chrome/app/chrome_main_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698