| Index: media/filters/ffmpeg_demuxer.cc
 | 
| diff --git a/media/filters/ffmpeg_demuxer.cc b/media/filters/ffmpeg_demuxer.cc
 | 
| index 1ab307e5383d518aa240000538c341ccad0a812e..30240507a9a3c2f2e46b7a436f66061ea3f9811e 100644
 | 
| --- a/media/filters/ffmpeg_demuxer.cc
 | 
| +++ b/media/filters/ffmpeg_demuxer.cc
 | 
| @@ -391,7 +391,7 @@ void FFmpegDemuxer::InitializeTask(DataSource* data_source,
 | 
|    data_source_ = data_source;
 | 
|  
 | 
|    // Add ourself to Protocol list and get our unique key.
 | 
| -  std::string key = FFmpegGlue::get()->AddProtocol(this);
 | 
| +  std::string key = FFmpegGlue::GetInstance()->AddProtocol(this);
 | 
|  
 | 
|    // Open FFmpeg AVFormatContext.
 | 
|    DCHECK(!format_context_);
 | 
| @@ -399,7 +399,7 @@ void FFmpegDemuxer::InitializeTask(DataSource* data_source,
 | 
|    int result = av_open_input_file(&context, key.c_str(), NULL, 0, NULL);
 | 
|  
 | 
|    // Remove ourself from protocol list.
 | 
| -  FFmpegGlue::get()->RemoveProtocol(this);
 | 
| +  FFmpegGlue::GetInstance()->RemoveProtocol(this);
 | 
|  
 | 
|    if (result < 0) {
 | 
|      host()->SetError(DEMUXER_ERROR_COULD_NOT_OPEN);
 | 
| 
 |