diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-23 09:42:02 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-23 09:42:02 +0000 |
commit | b982d511111aa49f84d5056d31326b1d07658118 (patch) | |
tree | 7d2e5ae9560a2067ba8c04439d5b601363c1b90a /remoting/tools | |
parent | dd70f2bff37f477c0fb113930ca4a68de8a336e1 (diff) | |
download | chromium_src-b982d511111aa49f84d5056d31326b1d07658118.zip chromium_src-b982d511111aa49f84d5056d31326b1d07658118.tar.gz chromium_src-b982d511111aa49f84d5056d31326b1d07658118.tar.bz2 |
Cleanup: Use base::CommandLine in remoting/
Review URL: https://codereview.chromium.org/290173011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272455 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/tools')
-rw-r--r-- | remoting/tools/breakpad_tester_win.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/remoting/tools/breakpad_tester_win.cc b/remoting/tools/breakpad_tester_win.cc index 846d61e..4cd8405 100644 --- a/remoting/tools/breakpad_tester_win.cc +++ b/remoting/tools/breakpad_tester_win.cc @@ -34,20 +34,21 @@ void usage(const char* program_name) { } // namespace int main(int argc, char** argv) { - CommandLine::Init(argc, argv); + base::CommandLine::Init(argc, argv); base::AtExitManager exit_manager; remoting::InitHostLogging(); - const CommandLine* command_line = CommandLine::ForCurrentProcess(); + const base::CommandLine* command_line = + base::CommandLine::ForCurrentProcess(); if (command_line->HasSwitch(kHelpSwitchName) || command_line->HasSwitch(kQuestionSwitchName)) { usage(argv[0]); return kSuccessExitCode; } - CommandLine::StringVector args = command_line->GetArgs(); + base::CommandLine::StringVector args = command_line->GetArgs(); if (args.size() != 1) { usage(argv[0]); return kUsageExitCode; |