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_FRAME_GENERATOR_FOR_TEST_H_ | 5 #ifndef CHROMECAST_MEDIA_CMA_TEST_FRAME_GENERATOR_FOR_TEST_H_ |
6 #define CHROMECAST_MEDIA_CMA_BASE_FRAME_GENERATOR_FOR_TEST_H_ | 6 #define CHROMECAST_MEDIA_CMA_TEST_FRAME_GENERATOR_FOR_TEST_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
12 | 12 |
13 namespace chromecast { | 13 namespace chromecast { |
14 namespace media { | 14 namespace media { |
15 class DecoderBufferBase; | 15 class DecoderBufferBase; |
16 | 16 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 | 49 |
50 // Total size of A/V buffers generated so far. | 50 // Total size of A/V buffers generated so far. |
51 size_t total_buffer_size_; | 51 size_t total_buffer_size_; |
52 | 52 |
53 DISALLOW_COPY_AND_ASSIGN(FrameGeneratorForTest); | 53 DISALLOW_COPY_AND_ASSIGN(FrameGeneratorForTest); |
54 }; | 54 }; |
55 | 55 |
56 } // namespace media | 56 } // namespace media |
57 } // namespace chromecast | 57 } // namespace chromecast |
58 | 58 |
59 #endif // CHROMECAST_MEDIA_CMA_BASE_TEST_FRAME_GENERATOR_H_ | 59 #endif // CHROMECAST_MEDIA_CMA_TEST_TEST_FRAME_GENERATOR_H_ |
OLD | NEW |