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

Side by Side Diff: content/browser/renderer_host/media/desktop_capture_device_ash.h

Issue 93583003: Reland 237634 and 237645. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase at 237726. Created 7 years 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 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_BROWSER_RENDERER_HOST_MEDIA_DESKTOP_CAPTURE_DEVICE_ASH_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_MEDIA_DESKTOP_CAPTURE_DEVICE_ASH_H_
7
8 #include <string>
9
10 #include "base/memory/scoped_ptr.h"
11 #include "content/common/content_export.h"
12 #include "content/public/common/desktop_media_id.h"
13 #include "media/video/capture/video_capture_device.h"
14
15 namespace aura {
16 class Window;
17 } // namespace aura
18
19 namespace content {
20
21 class VideoCaptureDeviceImpl;
22
23 // An implementation of VideoCaptureDevice that mirrors the desktop on Ash.
24 class CONTENT_EXPORT DesktopCaptureDeviceAsh
25 : public media::VideoCaptureDevice {
26 public:
27 // Creates a VideoCaptureDevice for the Ash desktop.
28 static media::VideoCaptureDevice* Create(const DesktopMediaID& source);
29
30 virtual ~DesktopCaptureDeviceAsh();
31
32 // VideoCaptureDevice implementation.
33 virtual void AllocateAndStart(const media::VideoCaptureParams& params,
34 scoped_ptr<Client> client) OVERRIDE;
35 virtual void StopAndDeAllocate() OVERRIDE;
36
37 private:
38 DesktopCaptureDeviceAsh(const DesktopMediaID& source);
39
40 const scoped_ptr<class VideoCaptureDeviceImpl> impl_;
41
42 DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDeviceAsh);
43 };
44
45
46 } // namespace content
47
48 #endif // CONTENT_BROWSER_RENDERER_HOST_MEDIA_DESKTOP_CAPTURE_DEVICE_ASH_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698