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 CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_VIDEO_TRACK_HOST_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_VIDEO_TRACK_HOST_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_VIDEO_TRACK_HOST_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_VIDEO_TRACK_HOST_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
9 #include "base/memory/weak_ptr.h" | 12 #include "base/memory/weak_ptr.h" |
10 #include "content/public/renderer/media_stream_video_sink.h" | 13 #include "content/public/renderer/media_stream_video_sink.h" |
11 #include "content/renderer/media/media_stream_video_source.h" | 14 #include "content/renderer/media/media_stream_video_source.h" |
12 #include "content/renderer/pepper/pepper_media_stream_track_host_base.h" | 15 #include "content/renderer/pepper/pepper_media_stream_track_host_base.h" |
13 #include "media/base/video_frame.h" | 16 #include "media/base/video_frame.h" |
14 #include "ppapi/c/ppb_video_frame.h" | 17 #include "ppapi/c/ppb_video_frame.h" |
15 #include "ppapi/shared_impl/media_stream_video_track_shared.h" | 18 #include "ppapi/shared_impl/media_stream_video_track_shared.h" |
16 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" | 19 #include "third_party/WebKit/public/platform/WebMediaStreamTrack.h" |
17 #include "ui/gfx/geometry/size.h" | 20 #include "ui/gfx/geometry/size.h" |
18 | 21 |
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 scoped_refptr<FrameDeliverer> frame_deliverer_; | 126 scoped_refptr<FrameDeliverer> frame_deliverer_; |
124 | 127 |
125 base::WeakPtrFactory<PepperMediaStreamVideoTrackHost> weak_factory_; | 128 base::WeakPtrFactory<PepperMediaStreamVideoTrackHost> weak_factory_; |
126 | 129 |
127 DISALLOW_COPY_AND_ASSIGN(PepperMediaStreamVideoTrackHost); | 130 DISALLOW_COPY_AND_ASSIGN(PepperMediaStreamVideoTrackHost); |
128 }; | 131 }; |
129 | 132 |
130 } // namespace content | 133 } // namespace content |
131 | 134 |
132 #endif // CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_VIDEO_TRACK_HOST_H_ | 135 #endif // CONTENT_RENDERER_PEPPER_PEPPER_MEDIA_STREAM_VIDEO_TRACK_HOST_H_ |
OLD | NEW |