diff options
author | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 03:36:31 +0000 |
---|---|---|
committer | mattm@chromium.org <mattm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 03:36:31 +0000 |
commit | 947446bd2c19777f7f20b9b14085dc31cdb73d1a (patch) | |
tree | a5a6965d00cd420035ccf80cf1498f7a2f1ca90a /chrome/browser/background_contents_service_unittest.cc | |
parent | 1f6228c2bfc056e876cbfd5b585f6d07d8f7313c (diff) | |
download | chromium_src-947446bd2c19777f7f20b9b14085dc31cdb73d1a.zip chromium_src-947446bd2c19777f7f20b9b14085dc31cdb73d1a.tar.gz chromium_src-947446bd2c19777f7f20b9b14085dc31cdb73d1a.tar.bz2 |
Rename CommandLine::ARGUMENTS_ONLY to NO_PROGRAM.
ARGUMENTS_ONLY was misleading since CommandLine has methods for handling "switches" and "arguments", but that constructor still allows both.
BUG=none
TEST=still builds
Review URL: http://codereview.chromium.org/3935001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63325 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/background_contents_service_unittest.cc')
-rw-r--r-- | chrome/browser/background_contents_service_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/background_contents_service_unittest.cc b/chrome/browser/background_contents_service_unittest.cc index 84c78ac..23ba929 100644 --- a/chrome/browser/background_contents_service_unittest.cc +++ b/chrome/browser/background_contents_service_unittest.cc @@ -24,7 +24,7 @@ class BackgroundContentsServiceTest : public testing::Test { BackgroundContentsServiceTest() {} ~BackgroundContentsServiceTest() {} void SetUp() { - command_line_.reset(new CommandLine(CommandLine::ARGUMENTS_ONLY)); + command_line_.reset(new CommandLine(CommandLine::NO_PROGRAM)); } DictionaryValue* GetPrefs(Profile* profile) { |