OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2013 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_PROXY_VIDEO_SOURCE_RESOURCE_H_ |
| 6 #define PPAPI_PROXY_VIDEO_SOURCE_RESOURCE_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "ppapi/proxy/connection.h" |
| 11 #include "ppapi/proxy/plugin_resource.h" |
| 12 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 13 #include "ppapi/shared_impl/var.h" |
| 14 #include "ppapi/thunk/ppb_video_source_private_api.h" |
| 15 |
| 16 struct PP_VideoFrame_Private; |
| 17 |
| 18 namespace ppapi { |
| 19 |
| 20 class TrackedCallback; |
| 21 |
| 22 namespace proxy { |
| 23 |
| 24 class PPAPI_PROXY_EXPORT VideoSourceResource |
| 25 : public PluginResource, |
| 26 public thunk::PPB_VideoSource_Private_API { |
| 27 public: |
| 28 VideoSourceResource(Connection connection, |
| 29 PP_Instance instance); |
| 30 virtual ~VideoSourceResource(); |
| 31 |
| 32 // Resource overrides. |
| 33 virtual thunk::PPB_VideoSource_Private_API* |
| 34 AsPPB_VideoSource_Private_API() OVERRIDE; |
| 35 |
| 36 // PPB_VideoSource_Private_API implementation. |
| 37 virtual int32_t Open( |
| 38 PP_Var stream_id, |
| 39 scoped_refptr<TrackedCallback> callback) OVERRIDE; |
| 40 virtual int32_t GetFrame( |
| 41 PP_VideoFrame_Private* frame, |
| 42 scoped_refptr<TrackedCallback> callback) OVERRIDE; |
| 43 virtual void Close() OVERRIDE; |
| 44 |
| 45 private: |
| 46 void OnPluginMsgOpenComplete( |
| 47 scoped_refptr<TrackedCallback> callback, |
| 48 const ResourceMessageReplyParams& params); |
| 49 void OnPluginMsgGetFrameComplete( |
| 50 scoped_refptr<TrackedCallback> callback, |
| 51 PP_VideoFrame_Private* frame, |
| 52 const ResourceMessageReplyParams& params, |
| 53 const HostResource& image_data, |
| 54 double timestamp); |
| 55 |
| 56 DISALLOW_COPY_AND_ASSIGN(VideoSourceResource); |
| 57 }; |
| 58 |
| 59 } // namespace proxy |
| 60 } // namespace ppapi |
| 61 |
| 62 #endif // PPAPI_PROXY_VIDEO_SOURCE_RESOURCE_H_ |
OLD | NEW |