| Index: media/cast/test/sender.cc
|
| diff --git a/media/cast/test/sender.cc b/media/cast/test/sender.cc
|
| index b61bd3a2da2a63fc1b3f72031b472fc8d5cb1ba7..d9cee32fc95c5af0b2579023745de7be7b4a83c5 100644
|
| --- a/media/cast/test/sender.cc
|
| +++ b/media/cast/test/sender.cc
|
| @@ -249,7 +249,7 @@ void WriteStatsAndDestroySubscribers(
|
|
|
| int main(int argc, char** argv) {
|
| base::AtExitManager at_exit;
|
| - CommandLine::Init(argc, argv);
|
| + base::CommandLine::Init(argc, argv);
|
| InitLogging(logging::LoggingSettings());
|
|
|
| // Load the media module for FFmpeg decoding.
|
| @@ -270,7 +270,7 @@ int main(int argc, char** argv) {
|
| base::MessageLoopForIO io_message_loop;
|
|
|
| // Default parameters.
|
| - CommandLine* cmd = CommandLine::ForCurrentProcess();
|
| + base::CommandLine* cmd = base::CommandLine::ForCurrentProcess();
|
| std::string remote_ip_address = cmd->GetSwitchValueASCII(kSwitchAddress);
|
| if (remote_ip_address.empty())
|
| remote_ip_address = "127.0.0.1";
|
|
|