Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "media/base/filters.h" | 5 #include "media/base/filters.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 | 8 |
| 9 namespace media { | 9 namespace media { |
| 10 | 10 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 63 } | 63 } |
| 64 } | 64 } |
| 65 | 65 |
| 66 void Filter::OnAudioRendererDisabled() { | 66 void Filter::OnAudioRendererDisabled() { |
| 67 } | 67 } |
| 68 | 68 |
| 69 void* DemuxerStream::QueryInterface(const char* interface_id) { | 69 void* DemuxerStream::QueryInterface(const char* interface_id) { |
| 70 return NULL; | 70 return NULL; |
| 71 } | 71 } |
| 72 | 72 |
| 73 void Demuxer::SetPreload(Preload preload) {} | |
|
acolwell GONE FROM CHROMIUM
2011/03/25 04:35:28
No longer needed once this is declared pure virtua
| |
| 74 | |
| 75 void DataSource::SetPreload(Preload preload) {} | |
|
acolwell GONE FROM CHROMIUM
2011/03/25 04:35:28
No longer needed once this is declared pure virtua
| |
| 76 | |
| 73 DemuxerStream::~DemuxerStream() {} | 77 DemuxerStream::~DemuxerStream() {} |
| 74 | 78 |
| 75 VideoDecoder::VideoDecoder() {} | 79 VideoDecoder::VideoDecoder() {} |
| 76 | 80 |
| 77 VideoDecoder::~VideoDecoder() {} | 81 VideoDecoder::~VideoDecoder() {} |
| 78 | 82 |
| 79 AudioDecoder::AudioDecoder() {} | 83 AudioDecoder::AudioDecoder() {} |
| 80 | 84 |
| 81 AudioDecoder::~AudioDecoder() {} | 85 AudioDecoder::~AudioDecoder() {} |
| 82 | 86 |
| 87 | |
|
acolwell GONE FROM CHROMIUM
2011/03/25 04:35:28
Remove
| |
| 83 } // namespace media | 88 } // namespace media |
| OLD | NEW |