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