| Index: content/common/gpu/media/video_encode_accelerator_unittest.cc
|
| diff --git a/content/common/gpu/media/video_encode_accelerator_unittest.cc b/content/common/gpu/media/video_encode_accelerator_unittest.cc
|
| index b07211d0867f59b8fa97b11b70c4f9f3a2b74512..9d1e3b69dc7c9edccf56b2fab6021bc0fb20f23b 100644
|
| --- a/content/common/gpu/media/video_encode_accelerator_unittest.cc
|
| +++ b/content/common/gpu/media/video_encode_accelerator_unittest.cc
|
| @@ -1029,7 +1029,7 @@ INSTANTIATE_TEST_CASE_P(
|
|
|
| int main(int argc, char** argv) {
|
| testing::InitGoogleTest(&argc, argv); // Removes gtest-specific args.
|
| - CommandLine::Init(argc, argv);
|
| + base::CommandLine::Init(argc, argv);
|
|
|
| base::ShadowingAtExitManager at_exit_manager;
|
| scoped_ptr<base::FilePath::StringType> test_stream_data(
|
| @@ -1043,11 +1043,11 @@ int main(int argc, char** argv) {
|
| settings.logging_dest = logging::LOG_TO_SYSTEM_DEBUG_LOG;
|
| CHECK(logging::InitLogging(settings));
|
|
|
| - CommandLine* cmd_line = CommandLine::ForCurrentProcess();
|
| + const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess();
|
| DCHECK(cmd_line);
|
|
|
| - CommandLine::SwitchMap switches = cmd_line->GetSwitches();
|
| - for (CommandLine::SwitchMap::const_iterator it = switches.begin();
|
| + base::CommandLine::SwitchMap switches = cmd_line->GetSwitches();
|
| + for (base::CommandLine::SwitchMap::const_iterator it = switches.begin();
|
| it != switches.end();
|
| ++it) {
|
| if (it->first == "test_stream_data") {
|
|
|