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

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

Issue 1917023003: ScreenCapture for Android phase1, part I (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address review comments Created 4 years, 7 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_(new media::ScreenCaptureDeviceCore(
15 base::WrapUnique(new media::ScreenCaptureMachineAndroid()))) {}
16
17 ScreenCaptureDeviceAndroid::~ScreenCaptureDeviceAndroid() {
18 DVLOG(2) << "ScreenCaptureDeviceAndroid@" << this << " destroying.";
19 }
20
21 // static
22 std::unique_ptr<media::VideoCaptureDevice>
23 ScreenCaptureDeviceAndroid::Create() {
24 return base::WrapUnique(new ScreenCaptureDeviceAndroid());
25 }
26
27 void ScreenCaptureDeviceAndroid::AllocateAndStart(
28 const media::VideoCaptureParams& params,
29 std::unique_ptr<Client> client) {
30 DVLOG(1) << "Allocating " << params.requested_format.frame_size.ToString();
31 core_->AllocateAndStart(params, std::move(client));
32
33 power_save_blocker_ = PowerSaveBlocker::Create(
34 PowerSaveBlocker::kPowerSaveBlockPreventDisplaySleep,
35 PowerSaveBlocker::kReasonOther,
36 "ScreenCaptureMachineAndroid is running");
37 }
38
39 void ScreenCaptureDeviceAndroid::StopAndDeAllocate() {
40 power_save_blocker_.reset();
41 core_->StopAndDeAllocate();
42 }
43
44 void ScreenCaptureDeviceAndroid::RequestRefreshFrame() {
45 core_->RequestRefreshFrame();
46 }
47 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698