Index: media/filters/ffmpeg_video_decoder.cc |
diff --git a/media/filters/ffmpeg_video_decoder.cc b/media/filters/ffmpeg_video_decoder.cc |
index 93dcee2157a4bfc12f25759eb55dc6abc4431607..fad63796ea7b67ae9dd60c0ca3c41a9414a5f62c 100644 |
--- a/media/filters/ffmpeg_video_decoder.cc |
+++ b/media/filters/ffmpeg_video_decoder.cc |
@@ -44,7 +44,7 @@ static int GetThreadCount(AVCodecID codec_id) { |
// Refer to http://crbug.com/93932 for tsan suppressions on decoding. |
int decode_threads = kDecodeThreads; |
- const CommandLine* cmd_line = CommandLine::ForCurrentProcess(); |
+ const base::CommandLine* cmd_line = base::CommandLine::ForCurrentProcess(); |
std::string threads(cmd_line->GetSwitchValueASCII(switches::kVideoThreads)); |
if (threads.empty() || !base::StringToInt(threads, &decode_threads)) |
return decode_threads; |