| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CHROMECAST_MEDIA_CMA_TEST_MOCK_FRAME_CONSUMER_H_ | 5 #ifndef CHROMECAST_MEDIA_CMA_TEST_MOCK_FRAME_CONSUMER_H_ |
| 6 #define CHROMECAST_MEDIA_CMA_TEST_MOCK_FRAME_CONSUMER_H_ | 6 #define CHROMECAST_MEDIA_CMA_TEST_MOCK_FRAME_CONSUMER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 | 9 |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/macros.h" | 13 #include "base/macros.h" |
| 14 #include "base/memory/scoped_ptr.h" |
| 14 | 15 |
| 15 namespace media { | 16 namespace media { |
| 16 class AudioDecoderConfig; | 17 class AudioDecoderConfig; |
| 17 class VideoDecoderConfig; | 18 class VideoDecoderConfig; |
| 18 } | 19 } |
| 19 | 20 |
| 20 namespace chromecast { | 21 namespace chromecast { |
| 21 namespace media { | 22 namespace media { |
| 22 class CodedFrameProvider; | 23 class CodedFrameProvider; |
| 23 class DecoderBufferBase; | 24 class DecoderBufferBase; |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 // Expected results. | 63 // Expected results. |
| 63 scoped_ptr<FrameGeneratorForTest> frame_generator_; | 64 scoped_ptr<FrameGeneratorForTest> frame_generator_; |
| 64 | 65 |
| 65 DISALLOW_COPY_AND_ASSIGN(MockFrameConsumer); | 66 DISALLOW_COPY_AND_ASSIGN(MockFrameConsumer); |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 } // namespace media | 69 } // namespace media |
| 69 } // namespace chromecast | 70 } // namespace chromecast |
| 70 | 71 |
| 71 #endif // CHROMECAST_MEDIA_CMA_TEST_MOCK_FRAME_CONSUMER_H_ | 72 #endif // CHROMECAST_MEDIA_CMA_TEST_MOCK_FRAME_CONSUMER_H_ |
| OLD | NEW |