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

Side by Side Diff: content/browser/media/capture/desktop_capture_device_aura.h

Issue 1162863003: Move ContentVideoCaptureDeviceCore from src/content to src/media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 6 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_ 5 #ifndef CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_
6 #define CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_ 6 #define CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "content/common/content_export.h" 11 #include "content/common/content_export.h"
12 #include "content/public/browser/desktop_media_id.h" 12 #include "content/public/browser/desktop_media_id.h"
13 #include "media/capture/screen_capture_device_core.h"
13 #include "media/video/capture/video_capture_device.h" 14 #include "media/video/capture/video_capture_device.h"
14 15
15 namespace aura { 16 namespace aura {
16 class Window; 17 class Window;
17 } // namespace aura 18 } // namespace aura
18 19
19 namespace content { 20 namespace content {
20 21
21 class ContentVideoCaptureDeviceCore;
22
23 // An implementation of VideoCaptureDevice that mirrors an Aura window. 22 // An implementation of VideoCaptureDevice that mirrors an Aura window.
24 class CONTENT_EXPORT DesktopCaptureDeviceAura 23 class CONTENT_EXPORT DesktopCaptureDeviceAura
25 : public media::VideoCaptureDevice { 24 : public media::VideoCaptureDevice {
26 public: 25 public:
27 // Creates a VideoCaptureDevice for the Aura desktop. 26 // Creates a VideoCaptureDevice for the Aura desktop.
28 static media::VideoCaptureDevice* Create(const DesktopMediaID& source); 27 static media::VideoCaptureDevice* Create(const DesktopMediaID& source);
29 28
30 ~DesktopCaptureDeviceAura() override; 29 ~DesktopCaptureDeviceAura() override;
31 30
32 // VideoCaptureDevice implementation. 31 // VideoCaptureDevice implementation.
33 void AllocateAndStart(const media::VideoCaptureParams& params, 32 void AllocateAndStart(const media::VideoCaptureParams& params,
34 scoped_ptr<Client> client) override; 33 scoped_ptr<Client> client) override;
35 void StopAndDeAllocate() override; 34 void StopAndDeAllocate() override;
36 35
37 private: 36 private:
38 DesktopCaptureDeviceAura(const DesktopMediaID& source); 37 DesktopCaptureDeviceAura(const DesktopMediaID& source);
39 38
40 scoped_ptr<class ContentVideoCaptureDeviceCore> core_; 39 scoped_ptr<media::ScreenCaptureDeviceCore> core_;
41 40
42 DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDeviceAura); 41 DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDeviceAura);
43 }; 42 };
44 43
45 44
46 } // namespace content 45 } // namespace content
47 46
48 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_ 47 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_AURA_H_
OLDNEW
« no previous file with comments | « content/browser/media/capture/desktop_capture_device.cc ('k') | content/browser/media/capture/desktop_capture_device_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698