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_BASE_MOCK_FRAME_CONSUMER_H_ | 5 #ifndef CHROMECAST_MEDIA_CMA_TEST_MOCK_FRAME_CONSUMER_H_ |
6 #define CHROMECAST_MEDIA_CMA_BASE_MOCK_FRAME_CONSUMER_H_ | 6 #define CHROMECAST_MEDIA_CMA_TEST_MOCK_FRAME_CONSUMER_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/callback.h" | 10 #include "base/callback.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 | 12 |
13 namespace media { | 13 namespace media { |
14 class AudioDecoderConfig; | 14 class AudioDecoderConfig; |
15 class VideoDecoderConfig; | 15 class VideoDecoderConfig; |
16 } | 16 } |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 59 |
60 // Expected results. | 60 // Expected results. |
61 scoped_ptr<FrameGeneratorForTest> frame_generator_; | 61 scoped_ptr<FrameGeneratorForTest> frame_generator_; |
62 | 62 |
63 DISALLOW_COPY_AND_ASSIGN(MockFrameConsumer); | 63 DISALLOW_COPY_AND_ASSIGN(MockFrameConsumer); |
64 }; | 64 }; |
65 | 65 |
66 } // namespace media | 66 } // namespace media |
67 } // namespace chromecast | 67 } // namespace chromecast |
68 | 68 |
69 #endif // CHROMECAST_MEDIA_CMA_BASE_MOCK_FRAME_CONSUMER_H_ | 69 #endif // CHROMECAST_MEDIA_CMA_TEST_MOCK_FRAME_CONSUMER_H_ |
OLD | NEW |