Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(27)

Side by Side Diff: ppapi/cpp/dev/video_capture_client_dev.h

Issue 7528006: C++ wrappers for PPB_VideoCapture_Dev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address review comments Created 9 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/cpp/dev/buffer_dev.cc ('k') | ppapi/cpp/dev/video_capture_client_dev.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_
OLDNEW
« no previous file with comments | « ppapi/cpp/dev/buffer_dev.cc ('k') | ppapi/cpp/dev/video_capture_client_dev.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698