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

Unified Diff: tools/ipc_fuzzer/mutate/mutate.cc

Issue 819223002: Make callers of CommandLine use it via the base:: namespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years 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 | « tools/ipc_fuzzer/mutate/message_util.cc ('k') | tools/ipc_fuzzer/replay/replay_process.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/mutate/mutate.cc
diff --git a/tools/ipc_fuzzer/mutate/mutate.cc b/tools/ipc_fuzzer/mutate/mutate.cc
index 3a42f4e96a65ffd1f83fa131cad3152d9a162103..68882d0e4351153a3c85bea163a57bbad0c0d488 100644
--- a/tools/ipc_fuzzer/mutate/mutate.cc
+++ b/tools/ipc_fuzzer/mutate/mutate.cc
@@ -655,9 +655,9 @@ void usage() {
} // namespace
int MutateMain(int argc, char** argv) {
- CommandLine::Init(argc, argv);
- CommandLine* cmd = CommandLine::ForCurrentProcess();
- CommandLine::StringVector args = cmd->GetArgs();
+ base::CommandLine::Init(argc, argv);
+ base::CommandLine* cmd = base::CommandLine::ForCurrentProcess();
+ base::CommandLine::StringVector args = cmd->GetArgs();
if (args.size() != 2 || cmd->HasSwitch(kHelpSwitch)) {
usage();
« no previous file with comments | « tools/ipc_fuzzer/mutate/message_util.cc ('k') | tools/ipc_fuzzer/replay/replay_process.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698