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

Unified Diff: tools/ipc_fuzzer/mutate/message_util.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/generate.cc ('k') | tools/ipc_fuzzer/mutate/mutate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ipc_fuzzer/mutate/message_util.cc
diff --git a/tools/ipc_fuzzer/mutate/message_util.cc b/tools/ipc_fuzzer/mutate/message_util.cc
index 4619af87e7271e87abccb75db0afb77ab27ae9fc..048f6e4350e1aa0e2b75f1662928bc42eedbcacf 100644
--- a/tools/ipc_fuzzer/mutate/message_util.cc
+++ b/tools/ipc_fuzzer/mutate/message_util.cc
@@ -73,9 +73,9 @@ bool MessageMatches(const IPC::Message* msg, const RE2& pattern) {
} // namespace
int main(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 || args.size() > 2 || cmd->HasSwitch(kHelpSwitch)) {
usage();
« no previous file with comments | « tools/ipc_fuzzer/mutate/generate.cc ('k') | tools/ipc_fuzzer/mutate/mutate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698