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_RENDERER_PEPPER_PEPPER_CAMERA_DEVICE_HOST_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_CAMERA_DEVICE_HOST_H_ |
6 #define CONTENT_RENDERER_PEPPER_PEPPER_CAMERA_DEVICE_HOST_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_CAMERA_DEVICE_HOST_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 10 #include "base/macros.h" |
8 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
9 #include "content/public/renderer/renderer_ppapi_host.h" | 12 #include "content/public/renderer/renderer_ppapi_host.h" |
10 #include "content/renderer/pepper/ppb_buffer_impl.h" | 13 #include "content/renderer/pepper/ppb_buffer_impl.h" |
11 #include "ppapi/c/pp_size.h" | 14 #include "ppapi/c/pp_size.h" |
12 #include "ppapi/c/private/pp_video_capture_format.h" | 15 #include "ppapi/c/private/pp_video_capture_format.h" |
13 #include "ppapi/host/host_message_context.h" | 16 #include "ppapi/host/host_message_context.h" |
14 #include "ppapi/host/resource_host.h" | 17 #include "ppapi/host/resource_host.h" |
15 | 18 |
16 namespace content { | 19 namespace content { |
17 class PepperPlatformCameraDevice; | 20 class PepperPlatformCameraDevice; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 ppapi::host::ReplyMessageContext open_reply_context_; | 61 ppapi::host::ReplyMessageContext open_reply_context_; |
59 | 62 |
60 ppapi::host::ReplyMessageContext video_capture_formats_reply_context_; | 63 ppapi::host::ReplyMessageContext video_capture_formats_reply_context_; |
61 | 64 |
62 DISALLOW_COPY_AND_ASSIGN(PepperCameraDeviceHost); | 65 DISALLOW_COPY_AND_ASSIGN(PepperCameraDeviceHost); |
63 }; | 66 }; |
64 | 67 |
65 } // namespace content | 68 } // namespace content |
66 | 69 |
67 #endif // CONTENT_RENDERER_PEPPER_PEPPER_CAMERA_DEVICE_HOST_H_ | 70 #endif // CONTENT_RENDERER_PEPPER_PEPPER_CAMERA_DEVICE_HOST_H_ |
OLD | NEW |