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

Side by Side Diff: content/browser/media/capture/screen_capture_device_android.cc

Issue 2125973002: Reland: ScreenCapture for Android phase1, part I (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add dependency to mojo/interfaces:image_capture 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
(Empty)
1 // Copyright 2016 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 #include "content/browser/media/capture/screen_capture_device_android.h"
6
7 #include "base/logging.h"
8 #include "base/memory/ptr_util.h"
9 #include "media/capture/content/android/screen_capture_machine_android.h"
10
11 namespace content {
12
13 ScreenCaptureDeviceAndroid::ScreenCaptureDeviceAndroid()
14 : core_(base::WrapUnique(new media::ScreenCaptureMachineAndroid())) {}
15
16 ScreenCaptureDeviceAndroid::~ScreenCaptureDeviceAndroid() {
17 DVLOG(2) << "ScreenCaptureDeviceAndroid@" << this << " destroying.";
18 }
19
20 void ScreenCaptureDeviceAndroid::AllocateAndStart(
21 const media::VideoCaptureParams& params,
22 std::unique_ptr<Client> client) {
23 DVLOG(1) << "Allocating " << params.requested_format.frame_size.ToString();
24 core_.AllocateAndStart(params, std::move(client));
25 }
26
27 void ScreenCaptureDeviceAndroid::StopAndDeAllocate() {
28 core_.StopAndDeAllocate();
29 }
30
31 void ScreenCaptureDeviceAndroid::RequestRefreshFrame() {
32 core_.RequestRefreshFrame();
33 }
34 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/media/capture/screen_capture_device_android.h ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698