| 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 #ifndef CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_UTILS_H_ | 5 #ifndef CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_UTILS_H_ |
| 6 #define CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_UTILS_H_ | 6 #define CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_UTILS_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
| 12 #include "media/base/channel_layout.h" | 12 #include "media/base/channel_layout.h" |
| 13 #include "media/base/video_capture_types.h" | 13 #include "media/capture/video_capture_types.h" |
| 14 | 14 |
| 15 namespace blink { | 15 namespace blink { |
| 16 class WebMediaStream; | 16 class WebMediaStream; |
| 17 class WebMediaStreamTrack; | 17 class WebMediaStreamTrack; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace media { | 20 namespace media { |
| 21 class AudioCapturerSource; | 21 class AudioCapturerSource; |
| 22 class VideoCapturerSource; | 22 class VideoCapturerSource; |
| 23 } | 23 } |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 const blink::WebMediaStreamTrack& video_track); | 56 const blink::WebMediaStreamTrack& video_track); |
| 57 | 57 |
| 58 // Requests that a refresh frame be sent "soon" (e.g., to resolve picture loss | 58 // Requests that a refresh frame be sent "soon" (e.g., to resolve picture loss |
| 59 // or quality issues). | 59 // or quality issues). |
| 60 CONTENT_EXPORT void RequestRefreshFrameFromVideoTrack( | 60 CONTENT_EXPORT void RequestRefreshFrameFromVideoTrack( |
| 61 const blink::WebMediaStreamTrack& video_track); | 61 const blink::WebMediaStreamTrack& video_track); |
| 62 | 62 |
| 63 } // namespace content | 63 } // namespace content |
| 64 | 64 |
| 65 #endif // CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_UTILS_H_ | 65 #endif // CONTENT_PUBLIC_RENDERER_MEDIA_STREAM_UTILS_H_ |
| OLD | NEW |