| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/mock_filters.h" | 5 #include "media/base/mock_filters.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 | 9 |
| 10 using ::testing::_; | 10 using ::testing::_; |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 MockAudioDecoder::~MockAudioDecoder() {} | 63 MockAudioDecoder::~MockAudioDecoder() {} |
| 64 | 64 |
| 65 MockVideoRenderer::MockVideoRenderer() {} | 65 MockVideoRenderer::MockVideoRenderer() {} |
| 66 | 66 |
| 67 MockVideoRenderer::~MockVideoRenderer() {} | 67 MockVideoRenderer::~MockVideoRenderer() {} |
| 68 | 68 |
| 69 MockAudioRenderer::MockAudioRenderer() {} | 69 MockAudioRenderer::MockAudioRenderer() {} |
| 70 | 70 |
| 71 MockAudioRenderer::~MockAudioRenderer() {} | 71 MockAudioRenderer::~MockAudioRenderer() {} |
| 72 | 72 |
| 73 MockRenderer::MockRenderer() {} |
| 74 |
| 75 MockRenderer::~MockRenderer() {} |
| 76 |
| 73 MockTimeSource::MockTimeSource() {} | 77 MockTimeSource::MockTimeSource() {} |
| 74 | 78 |
| 75 MockTimeSource::~MockTimeSource() {} | 79 MockTimeSource::~MockTimeSource() {} |
| 76 | 80 |
| 77 MockTextTrack::MockTextTrack() {} | 81 MockTextTrack::MockTextTrack() {} |
| 78 | 82 |
| 79 MockTextTrack::~MockTextTrack() {} | 83 MockTextTrack::~MockTextTrack() {} |
| 80 | 84 |
| 81 MockDecryptor::MockDecryptor() {} | 85 MockDecryptor::MockDecryptor() {} |
| 82 | 86 |
| 83 MockDecryptor::~MockDecryptor() {} | 87 MockDecryptor::~MockDecryptor() {} |
| 84 | 88 |
| 85 MockStatisticsCB::MockStatisticsCB() {} | 89 MockStatisticsCB::MockStatisticsCB() {} |
| 86 | 90 |
| 87 MockStatisticsCB::~MockStatisticsCB() {} | 91 MockStatisticsCB::~MockStatisticsCB() {} |
| 88 | 92 |
| 89 } // namespace media | 93 } // namespace media |
| OLD | NEW |