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 "content/browser/media/capture/web_contents_video_capture_device.h" | 5 #include "content/browser/media/capture/web_contents_video_capture_device.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 #include <utility> | 9 #include <utility> |
10 | 10 |
11 #include "base/bind_helpers.h" | 11 #include "base/bind_helpers.h" |
12 #include "base/debug/debugger.h" | 12 #include "base/debug/debugger.h" |
13 #include "base/macros.h" | 13 #include "base/macros.h" |
14 #include "base/run_loop.h" | 14 #include "base/run_loop.h" |
15 #include "base/test/test_timeouts.h" | 15 #include "base/test/test_timeouts.h" |
16 #include "base/time/time.h" | 16 #include "base/time/time.h" |
17 #include "base/timer/timer.h" | 17 #include "base/timer/timer.h" |
18 #include "build/build_config.h" | 18 #include "build/build_config.h" |
19 #include "content/browser/browser_thread_impl.h" | 19 #include "content/browser/browser_thread_impl.h" |
20 #include "content/browser/frame_host/render_frame_host_impl.h" | 20 #include "content/browser/frame_host/render_frame_host_impl.h" |
21 #include "content/browser/media/capture/web_contents_capture_util.h" | |
22 #include "content/browser/renderer_host/media/video_capture_buffer_pool.h" | 21 #include "content/browser/renderer_host/media/video_capture_buffer_pool.h" |
23 #include "content/browser/renderer_host/render_view_host_factory.h" | 22 #include "content/browser/renderer_host/render_view_host_factory.h" |
24 #include "content/browser/renderer_host/render_widget_host_impl.h" | 23 #include "content/browser/renderer_host/render_widget_host_impl.h" |
25 #include "content/browser/web_contents/web_contents_impl.h" | 24 #include "content/browser/web_contents/web_contents_impl.h" |
26 #include "content/public/browser/notification_service.h" | 25 #include "content/public/browser/notification_service.h" |
27 #include "content/public/browser/notification_types.h" | 26 #include "content/public/browser/notification_types.h" |
28 #include "content/public/browser/render_widget_host_view_frame_subscriber.h" | 27 #include "content/public/browser/render_widget_host_view_frame_subscriber.h" |
| 28 #include "content/public/browser/web_contents_media_capture_id.h" |
29 #include "content/public/test/mock_render_process_host.h" | 29 #include "content/public/test/mock_render_process_host.h" |
30 #include "content/public/test/test_browser_context.h" | 30 #include "content/public/test/test_browser_context.h" |
31 #include "content/public/test/test_browser_thread_bundle.h" | 31 #include "content/public/test/test_browser_thread_bundle.h" |
32 #include "content/public/test/test_utils.h" | 32 #include "content/public/test/test_utils.h" |
33 #include "content/test/test_render_frame_host_factory.h" | 33 #include "content/test/test_render_frame_host_factory.h" |
34 #include "content/test/test_render_view_host.h" | 34 #include "content/test/test_render_view_host.h" |
35 #include "content/test/test_web_contents.h" | 35 #include "content/test/test_web_contents.h" |
36 #include "media/base/video_capture_types.h" | 36 #include "media/base/video_capture_types.h" |
37 #include "media/base/video_frame.h" | 37 #include "media/base/video_frame.h" |
38 #include "media/base/video_util.h" | 38 #include "media/base/video_util.h" |
(...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1149 policies[i], gfx::Size(1000, 1000), gfx::Size(1000, 1000)); | 1149 policies[i], gfx::Size(1000, 1000), gfx::Size(1000, 1000)); |
1150 RunTestForPreferredSize( | 1150 RunTestForPreferredSize( |
1151 policies[i], gfx::Size(1600, 1000), gfx::Size(1600, 1000)); | 1151 policies[i], gfx::Size(1600, 1000), gfx::Size(1600, 1000)); |
1152 RunTestForPreferredSize( | 1152 RunTestForPreferredSize( |
1153 policies[i], gfx::Size(837, 999), gfx::Size(837, 999)); | 1153 policies[i], gfx::Size(837, 999), gfx::Size(837, 999)); |
1154 } | 1154 } |
1155 } | 1155 } |
1156 | 1156 |
1157 } // namespace | 1157 } // namespace |
1158 } // namespace content | 1158 } // namespace content |
OLD | NEW |