summaryrefslogtreecommitdiffstats
path: root/remoting/tools
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/tools')
-rw-r--r--remoting/tools/breakpad_tester_win.cc7
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;