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

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

Issue 252393002: Adds UMA histograms for desktop capture device. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 8 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 (c) 2013 The Chromium Authors. All rights reserved. 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 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_H_ 5 #ifndef CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_H_
6 #define CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_H_ 6 #define CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_H_
7 7
8 #include "base/memory/ref_counted.h" 8 #include "base/memory/ref_counted.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "content/common/content_export.h" 10 #include "content/common/content_export.h"
11 #include "content/public/browser/desktop_media_id.h"
11 #include "media/video/capture/video_capture_device.h" 12 #include "media/video/capture/video_capture_device.h"
12 #include "ui/gfx/native_widget_types.h" 13 #include "ui/gfx/native_widget_types.h"
13 14
14 namespace base { 15 namespace base {
15 class SequencedTaskRunner; 16 class SequencedTaskRunner;
16 } // namespace base 17 } // namespace base
17 18
18 namespace webrtc { 19 namespace webrtc {
19 class DesktopCapturer; 20 class DesktopCapturer;
20 } // namespace webrtc 21 } // namespace webrtc
21 22
22 namespace content { 23 namespace content {
23 24
24 struct DesktopMediaID;
25
26 // DesktopCaptureDevice implements VideoCaptureDevice for screens and windows. 25 // DesktopCaptureDevice implements VideoCaptureDevice for screens and windows.
27 // It's essentially an adapter between webrtc::DesktopCapturer and 26 // It's essentially an adapter between webrtc::DesktopCapturer and
28 // VideoCaptureDevice. 27 // VideoCaptureDevice.
29 class CONTENT_EXPORT DesktopCaptureDevice : public media::VideoCaptureDevice { 28 class CONTENT_EXPORT DesktopCaptureDevice : public media::VideoCaptureDevice {
30 public: 29 public:
31 // Creates capturer for the specified |source| and then creates 30 // Creates capturer for the specified |source| and then creates
32 // DesktopCaptureDevice for it. May return NULL in case of a failure (e.g. if 31 // DesktopCaptureDevice for it. May return NULL in case of a failure (e.g. if
33 // requested window was destroyed). 32 // requested window was destroyed).
34 static scoped_ptr<media::VideoCaptureDevice> Create( 33 static scoped_ptr<media::VideoCaptureDevice> Create(
35 const DesktopMediaID& source); 34 const DesktopMediaID& source);
36 35
37 DesktopCaptureDevice(scoped_refptr<base::SequencedTaskRunner> task_runner, 36 DesktopCaptureDevice(scoped_refptr<base::SequencedTaskRunner> task_runner,
38 scoped_ptr<webrtc::DesktopCapturer> desktop_capturer); 37 scoped_ptr<webrtc::DesktopCapturer> desktop_capturer,
38 DesktopMediaID::Type type);
39 virtual ~DesktopCaptureDevice(); 39 virtual ~DesktopCaptureDevice();
40 40
41 // VideoCaptureDevice interface. 41 // VideoCaptureDevice interface.
42 virtual void AllocateAndStart(const media::VideoCaptureParams& params, 42 virtual void AllocateAndStart(const media::VideoCaptureParams& params,
43 scoped_ptr<Client> client) OVERRIDE; 43 scoped_ptr<Client> client) OVERRIDE;
44 virtual void StopAndDeAllocate() OVERRIDE; 44 virtual void StopAndDeAllocate() OVERRIDE;
45 45
46 // Set the platform-dependent window id for the notification window. 46 // Set the platform-dependent window id for the notification window.
47 void SetNotificationWindowId(gfx::NativeViewId window_id); 47 void SetNotificationWindowId(gfx::NativeViewId window_id);
48 48
49 private: 49 private:
50 class Core; 50 class Core;
51 scoped_refptr<Core> core_; 51 scoped_refptr<Core> core_;
52 52
53 DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDevice); 53 DISALLOW_COPY_AND_ASSIGN(DesktopCaptureDevice);
54 }; 54 };
55 55
56 } // namespace content 56 } // namespace content
57 57
58 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_H_ 58 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_DESKTOP_CAPTURE_DEVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698