OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 PPAPI_CPP_DEV_VIDEO_CAPTURE_CLIENT_DEV_H_ | 5 #ifndef PPAPI_CPP_DEV_VIDEO_CAPTURE_CLIENT_DEV_H_ |
6 #define PPAPI_CPP_DEV_VIDEO_CAPTURE_CLIENT_DEV_H_ | 6 #define PPAPI_CPP_DEV_VIDEO_CAPTURE_CLIENT_DEV_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ppapi/c/dev/pp_video_capture_dev.h" | 10 #include "ppapi/c/dev/pp_video_capture_dev.h" |
11 #include "ppapi/cpp/dev/buffer_dev.h" | 11 #include "ppapi/cpp/dev/buffer_dev.h" |
12 #include "ppapi/cpp/instance_handle.h" | 12 #include "ppapi/cpp/instance_handle.h" |
13 #include "ppapi/cpp/resource.h" | 13 #include "ppapi/cpp/resource.h" |
14 | 14 |
15 namespace pp { | 15 namespace pp { |
16 | 16 |
| 17 class Instance; |
| 18 |
17 class VideoCaptureClient_Dev { | 19 class VideoCaptureClient_Dev { |
18 public: | 20 public: |
19 explicit VideoCaptureClient_Dev(const InstanceHandle& instance); | 21 explicit VideoCaptureClient_Dev(Instance* instance); |
20 virtual ~VideoCaptureClient_Dev(); | 22 virtual ~VideoCaptureClient_Dev(); |
21 | 23 |
22 virtual void OnDeviceInfo(PP_Resource video_capture, | 24 virtual void OnDeviceInfo(PP_Resource video_capture, |
23 const PP_VideoCaptureDeviceInfo_Dev& info, | 25 const PP_VideoCaptureDeviceInfo_Dev& info, |
24 const std::vector<Buffer_Dev>& buffers) = 0; | 26 const std::vector<Buffer_Dev>& buffers) = 0; |
25 virtual void OnStatus(PP_Resource video_capture, uint32_t status) = 0; | 27 virtual void OnStatus(PP_Resource video_capture, uint32_t status) = 0; |
26 virtual void OnError(PP_Resource video_capture, uint32_t error) = 0; | 28 virtual void OnError(PP_Resource video_capture, uint32_t error) = 0; |
27 virtual void OnBufferReady(PP_Resource video_capture, uint32_t buffer) = 0; | 29 virtual void OnBufferReady(PP_Resource video_capture, uint32_t buffer) = 0; |
28 | 30 |
29 private: | 31 private: |
30 InstanceHandle instance_; | 32 InstanceHandle instance_; |
31 }; | 33 }; |
32 | 34 |
33 } // namespace pp | 35 } // namespace pp |
34 | 36 |
35 #endif // PPAPI_CPP_DEV_VIDEO_CAPTURE_CLIENT_DEV_H_ | 37 #endif // PPAPI_CPP_DEV_VIDEO_CAPTURE_CLIENT_DEV_H_ |
OLD | NEW |