OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <stddef.h> |
| 6 |
5 #include "base/bind.h" | 7 #include "base/bind.h" |
6 #include "base/location.h" | 8 #include "base/location.h" |
7 #include "base/macros.h" | 9 #include "base/macros.h" |
8 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
9 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
10 #include "base/run_loop.h" | 12 #include "base/run_loop.h" |
11 #include "base/strings/utf_string_conversions.h" | 13 #include "base/strings/utf_string_conversions.h" |
12 #include "content/child/child_process.h" | 14 #include "content/child/child_process.h" |
13 #include "content/renderer/media/media_stream_video_track.h" | 15 #include "content/renderer/media/media_stream_video_track.h" |
14 #include "content/renderer/media/mock_media_stream_video_source.h" | 16 #include "content/renderer/media/mock_media_stream_video_source.h" |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 third_frame_encoded_data.size()); | 176 third_frame_encoded_data.size()); |
175 | 177 |
176 Mock::VerifyAndClearExpectations(this); | 178 Mock::VerifyAndClearExpectations(this); |
177 } | 179 } |
178 | 180 |
179 INSTANTIATE_TEST_CASE_P(, | 181 INSTANTIATE_TEST_CASE_P(, |
180 VideoTrackRecorderTest, | 182 VideoTrackRecorderTest, |
181 ValuesIn(kTrackRecorderTestParams)); | 183 ValuesIn(kTrackRecorderTestParams)); |
182 | 184 |
183 } // namespace content | 185 } // namespace content |
OLD | NEW |