| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/macros.h" | 14 #include "base/macros.h" |
| 15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 16 #include "content/common/media/video_capture.h" | 16 #include "content/common/media/video_capture.h" |
| 17 #include "content/public/renderer/renderer_ppapi_host.h" | 17 #include "content/public/renderer/renderer_ppapi_host.h" |
| 18 #include "content/renderer/pepper/pepper_device_enumeration_host_helper.h" | 18 #include "content/renderer/pepper/pepper_device_enumeration_host_helper.h" |
| 19 #include "content/renderer/pepper/ppb_buffer_impl.h" | 19 #include "content/renderer/pepper/ppb_buffer_impl.h" |
| 20 #include "media/base/video_capture_types.h" | 20 #include "media/capture/video_capture_types.h" |
| 21 #include "ppapi/c/dev/ppp_video_capture_dev.h" | 21 #include "ppapi/c/dev/ppp_video_capture_dev.h" |
| 22 #include "ppapi/host/host_message_context.h" | 22 #include "ppapi/host/host_message_context.h" |
| 23 #include "ppapi/host/resource_host.h" | 23 #include "ppapi/host/resource_host.h" |
| 24 | 24 |
| 25 namespace media { | 25 namespace media { |
| 26 class VideoFrame; | 26 class VideoFrame; |
| 27 } // namespace media | 27 } // namespace media |
| 28 | 28 |
| 29 namespace content { | 29 namespace content { |
| 30 class PepperPlatformVideoCapture; | 30 class PepperPlatformVideoCapture; |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 ppapi::host::ReplyMessageContext open_reply_context_; | 117 ppapi::host::ReplyMessageContext open_reply_context_; |
| 118 | 118 |
| 119 PepperDeviceEnumerationHostHelper enumeration_helper_; | 119 PepperDeviceEnumerationHostHelper enumeration_helper_; |
| 120 | 120 |
| 121 DISALLOW_COPY_AND_ASSIGN(PepperVideoCaptureHost); | 121 DISALLOW_COPY_AND_ASSIGN(PepperVideoCaptureHost); |
| 122 }; | 122 }; |
| 123 | 123 |
| 124 } // namespace content | 124 } // namespace content |
| 125 | 125 |
| 126 #endif // CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ | 126 #endif // CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_CAPTURE_HOST_H_ |
| OLD | NEW |