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

Unified Diff: tools/ipc_fuzzer/mutate/generate.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/imagediff/image_diff.cc ('k') | tools/ipc_fuzzer/mutate/message_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/mutate/generate.cc
diff --git a/tools/ipc_fuzzer/mutate/generate.cc b/tools/ipc_fuzzer/mutate/generate.cc
index 8d11280b8a1c3c662f549cf585c47edcc34e3c8b..c3bb18af1e68b91b094d2cb86502f72447870ebf 100644
--- a/tools/ipc_fuzzer/mutate/generate.cc
+++ b/tools/ipc_fuzzer/mutate/generate.cc
@@ -1285,9 +1285,9 @@ static const char kCountSwitch[] = "count";
static const char kHelpSwitch[] = "help";
int GenerateMain(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() != 1 || cmd->HasSwitch(kHelpSwitch)) {
std::cerr << "Usage: ipc_fuzzer_generate [--help] [--count=n] outfile\n";
« no previous file with comments | « tools/imagediff/image_diff.cc ('k') | tools/ipc_fuzzer/mutate/message_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698