1- git mv screen_capturer_mac.mm mac/screen_capturer_mac.mm 2- extract class ScreenCapturerMac declaritions to its own header 3- extract static CreateRawScreenCapturer to screen_capturer_darwin.mm (Using 'darwin' instead of 'mac' allows to make happy the command git log --follow mac/screen_capturer_mac.mm) 4- git cl format Bug: webrtc:8652 Change-Id: Ibb13bd5dec61aa9b92c9f5f30fedd0508a727dd9 Reviewed-on: https://webrtc-review.googlesource.com/64680 Commit-Queue: Julien Isorce <julien.isorce@chromium.org> Reviewed-by: Zijie He <zijiehe@chromium.org> Cr-Commit-Position: refs/heads/master@{#22620}
34 lines
957 B
Plaintext
34 lines
957 B
Plaintext
/*
|
|
* Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include <memory>
|
|
|
|
#include "modules/desktop_capture/mac/screen_capturer_mac.h"
|
|
|
|
namespace webrtc {
|
|
|
|
// static
|
|
std::unique_ptr<DesktopCapturer> DesktopCapturer::CreateRawScreenCapturer(
|
|
const DesktopCaptureOptions& options) {
|
|
if (!options.configuration_monitor()) {
|
|
return nullptr;
|
|
}
|
|
|
|
std::unique_ptr<ScreenCapturerMac> capturer(
|
|
new ScreenCapturerMac(options.configuration_monitor(), options.detect_updated_region()));
|
|
if (!capturer.get()->Init()) {
|
|
return nullptr;
|
|
}
|
|
|
|
return capturer;
|
|
}
|
|
|
|
} // namespace webrtc
|