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

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

Issue 2143903003: [WIP] Move media/capture to device/capture (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_ 5 #ifndef CONTENT_BROWSER_MEDIA_CAPTURE_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_
6 #define CONTENT_BROWSER_MEDIA_CAPTURE_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_ 6 #define CONTENT_BROWSER_MEDIA_CAPTURE_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "base/macros.h" 11 #include "base/macros.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 #include "media/capture/content/screen_capture_device_core.h" 13 #include "device/capture/content/screen_capture_device_core.h"
14 #include "media/capture/video/video_capture_device.h" 14 #include "device/capture/video/video_capture_device.h"
15 15
16 namespace content { 16 namespace content {
17 17
18 // A virtualized VideoCaptureDevice that mirrors the displayed contents of a 18 // A virtualized VideoCaptureDevice that mirrors the displayed contents of a
19 // WebContents (i.e., the composition of an entire render frame tree), producing 19 // WebContents (i.e., the composition of an entire render frame tree), producing
20 // a stream of video frames. 20 // a stream of video frames.
21 // 21 //
22 // An instance is created by providing a device_id. The device_id contains 22 // An instance is created by providing a device_id. The device_id contains
23 // information necessary for finding a WebContents instance. From then on, 23 // information necessary for finding a WebContents instance. From then on,
24 // WebContentsVideoCaptureDevice will capture from the RenderWidgetHost that 24 // WebContentsVideoCaptureDevice will capture from the RenderWidgetHost that
(...skipping 23 matching lines...) Expand all
48 48
49 const std::unique_ptr<media::ScreenCaptureDeviceCore> core_; 49 const std::unique_ptr<media::ScreenCaptureDeviceCore> core_;
50 50
51 DISALLOW_COPY_AND_ASSIGN(WebContentsVideoCaptureDevice); 51 DISALLOW_COPY_AND_ASSIGN(WebContentsVideoCaptureDevice);
52 }; 52 };
53 53
54 54
55 } // namespace content 55 } // namespace content
56 56
57 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_ 57 #endif // CONTENT_BROWSER_MEDIA_CAPTURE_WEB_CONTENTS_VIDEO_CAPTURE_DEVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698