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

Side by Side Diff: content/renderer/pepper/pepper_video_destination_host.h

Issue 13771020: Add Pepper VideoReader and VideoWriter plumbing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, clean up some headers. Created 7 years, 7 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
OLDNEW
(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 CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_DESTINATION_HOST_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_DESTINATION_HOST_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/memory/weak_ptr.h"
10 #include "content/common/content_export.h"
11 #include "ppapi/c/pp_time.h"
12 #include "ppapi/host/resource_host.h"
13
14 namespace content {
15
16 class RendererPpapiHost;
17
18 class CONTENT_EXPORT PepperVideoDestinationHost
19 : public ppapi::host::ResourceHost {
20 public:
21 PepperVideoDestinationHost(RendererPpapiHost* host,
22 PP_Instance instance,
23 PP_Resource resource);
24
25 virtual ~PepperVideoDestinationHost();
26
27 virtual int32_t OnResourceMessageReceived(
28 const IPC::Message& msg,
29 ppapi::host::HostMessageContext* context) OVERRIDE;
30
31 private:
32 int32_t OnHostMsgOpen(ppapi::host::HostMessageContext* context,
33 const std::string& stream_url);
34 int32_t OnHostMsgPutFrame(ppapi::host::HostMessageContext* context,
35 const ppapi::HostResource& image_data,
36 PP_TimeTicks timestamp);
37 int32_t OnHostMsgClose(ppapi::host::HostMessageContext* context);
38
39 RendererPpapiHost* renderer_ppapi_host_;
40
41 base::WeakPtrFactory<PepperVideoDestinationHost> weak_factory_;
42
43 DISALLOW_COPY_AND_ASSIGN(PepperVideoDestinationHost);
44 };
45
46 } // namespace content
47
48 #endif // CONTENT_RENDERER_PEPPER_PEPPER_VIDEO_DESTINATION_HOST_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698