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 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "content/common/media/video_capture.h" | 11 #include "content/common/media/video_capture.h" |
12 #include "content/public/renderer/renderer_ppapi_host.h" | 12 #include "content/public/renderer/renderer_ppapi_host.h" |
13 #include "content/renderer/pepper/pepper_device_enumeration_host_helper.h" | 13 #include "content/renderer/pepper/pepper_device_enumeration_host_helper.h" |
14 #include "content/renderer/pepper/ppb_buffer_impl.h" | 14 #include "content/renderer/pepper/ppb_buffer_impl.h" |
15 #include "media/video/capture/video_capture_types.h" | 15 #include "media/base/video_capture_types.h" |
16 #include "ppapi/c/dev/ppp_video_capture_dev.h" | 16 #include "ppapi/c/dev/ppp_video_capture_dev.h" |
17 #include "ppapi/host/host_message_context.h" | 17 #include "ppapi/host/host_message_context.h" |
18 #include "ppapi/host/resource_host.h" | 18 #include "ppapi/host/resource_host.h" |
19 | 19 |
20 namespace media { | 20 namespace media { |
21 class VideoFrame; | 21 class VideoFrame; |
22 } // namespace media | 22 } // namespace media |
23 | 23 |
24 namespace content { | 24 namespace content { |
25 class PepperPlatformVideoCapture; | 25 class PepperPlatformVideoCapture; |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
112 ppapi::host::ReplyMessageContext open_reply_context_; | 112 ppapi::host::ReplyMessageContext open_reply_context_; |
113 | 113 |
114 PepperDeviceEnumerationHostHelper enumeration_helper_; | 114 PepperDeviceEnumerationHostHelper enumeration_helper_; |
115 | 115 |
116 DISALLOW_COPY_AND_ASSIGN(PepperVideoCaptureHost); | 116 DISALLOW_COPY_AND_ASSIGN(PepperVideoCaptureHost); |
117 }; | 117 }; |
118 | 118 |
119 } // namespace content | 119 } // namespace content |
120 | 120 |
121 #endif // CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ | 121 #endif // CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ |
OLD | NEW |