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

Side by Side Diff: media/screen_capture/android/screen_capture_device_android.h

Issue 1140113002: Implement screen capture for android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add ScreenCaptureMachineAndroid which inherited from content::VideoCaptureMachine 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
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
mcasas 2015/06/19 23:22:22 If really needed, I'd put these new files under me
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 MEDIA_SCREEN_CAPTURE_ANDROID_SCREEN_CAPTURE_DEVICE_ANDROID_H_
6 #define MEDIA_SCREEN_CAPTURE_ANDROID_SCREEN_CAPTURE_DEVICE_ANDROID_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "content/browser/media/capture/content_video_capture_device_core.h"
mcasas 2015/06/19 23:22:22 media/ cannot depend on content/
10 #include "media/video/capture/video_capture_device.h"
11
12 namespace media {
13
14
15 class ScreenCaptureDeviceAndroid : public VideoCaptureDevice {
16 public:
17 explicit ScreenCaptureDeviceAndroid();
18 virtual ~ScreenCaptureDeviceAndroid();
19
20 // VideoCaptureDevice implementation.
21 void AllocateAndStart(const VideoCaptureParams& params,
22 scoped_ptr<Client> client) override;
23 void StopAndDeAllocate() override;
24
25 private:
26 scoped_ptr<content::ContentVideoCaptureDeviceCore> core_;
27
28 DISALLOW_COPY_AND_ASSIGN(ScreenCaptureDeviceAndroid);
29 };
30
31 } // namespace webrtc
32
33 #endif // MEDIA_SCREEN_CAPTURE_ANDROID_SCREEN_CAPTURE_DEVICE_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698