commit | 7ceb3588c71385c476a8b43f19061eaea641a141 | [log] [tgz] |
---|---|---|
author | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Tue Jun 03 00:01:07 2014 |
committer | [email protected] <[email protected]@0039d316-1c4b-4281-b951-d872f2087c98> | Tue Jun 03 00:01:07 2014 |
tree | 9f384ab00315cb2aaaa21cfd11ea364f0b29823c | |
parent | 35b05b176d2a90ee1b683f62fa2bc57188d16058 [diff] [blame] |
Cleanup: Use base::CommandLine in net/ [email protected] Review URL: https://codereview.chromium.org/296513013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274378 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/net/tools/quic/quic_client_bin.cc b/net/tools/quic/quic_client_bin.cc index 204f3f50..ebbc51e 100644 --- a/net/tools/quic/quic_client_bin.cc +++ b/net/tools/quic/quic_client_bin.cc
@@ -35,8 +35,8 @@ bool FLAGS_secure = false; int main(int argc, char *argv[]) { - CommandLine::Init(argc, argv); - CommandLine* line = CommandLine::ForCurrentProcess(); + base::CommandLine::Init(argc, argv); + base::CommandLine* line = base::CommandLine::ForCurrentProcess(); logging::LoggingSettings settings; settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;