In https://webrtc-review.googlesource.com/c/src/+/1560 we moved WebRTC from src/webrtc to src/ (in order to preserve an healthy git history). This CL takes care of fixing header guards, #include paths, etc... NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true TBR=tommi@webrtc.org Bug: chromium:611808 Change-Id: Iea91618212bee0af16aa3f05071eab8f93706578 Reviewed-on: https://webrtc-review.googlesource.com/1561 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Henrik Kjellander <kjellander@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#19846}
68 lines
2.2 KiB
C++
68 lines
2.2 KiB
C++
/*
|
|
* Copyright (c) 2014 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.
|
|
*/
|
|
|
|
#ifndef MODULES_DESKTOP_CAPTURE_MAC_DESKTOP_CONFIGURATION_MONITOR_H_
|
|
#define MODULES_DESKTOP_CAPTURE_MAC_DESKTOP_CONFIGURATION_MONITOR_H_
|
|
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
|
|
#include <memory>
|
|
#include <set>
|
|
|
|
#include "modules/desktop_capture/mac/desktop_configuration.h"
|
|
#include "rtc_base/constructormagic.h"
|
|
#include "system_wrappers/include/atomic32.h"
|
|
|
|
namespace webrtc {
|
|
|
|
class EventWrapper;
|
|
|
|
// The class provides functions to synchronize capturing and display
|
|
// reconfiguring across threads, and the up-to-date MacDesktopConfiguration.
|
|
class DesktopConfigurationMonitor {
|
|
public:
|
|
DesktopConfigurationMonitor();
|
|
// Acquires a lock on the current configuration.
|
|
void Lock();
|
|
// Releases the lock previously acquired.
|
|
void Unlock();
|
|
// Returns the current desktop configuration. Should only be called when the
|
|
// lock has been acquired.
|
|
const MacDesktopConfiguration& desktop_configuration() {
|
|
return desktop_configuration_;
|
|
}
|
|
|
|
void AddRef() { ++ref_count_; }
|
|
void Release() {
|
|
if (--ref_count_ == 0)
|
|
delete this;
|
|
}
|
|
|
|
private:
|
|
static void DisplaysReconfiguredCallback(CGDirectDisplayID display,
|
|
CGDisplayChangeSummaryFlags flags,
|
|
void *user_parameter);
|
|
~DesktopConfigurationMonitor();
|
|
|
|
void DisplaysReconfigured(CGDirectDisplayID display,
|
|
CGDisplayChangeSummaryFlags flags);
|
|
|
|
Atomic32 ref_count_;
|
|
std::set<CGDirectDisplayID> reconfiguring_displays_;
|
|
MacDesktopConfiguration desktop_configuration_;
|
|
std::unique_ptr<EventWrapper> display_configuration_capture_event_;
|
|
|
|
RTC_DISALLOW_COPY_AND_ASSIGN(DesktopConfigurationMonitor);
|
|
};
|
|
|
|
} // namespace webrtc
|
|
|
|
#endif // MODULES_DESKTOP_CAPTURE_MAC_DESKTOP_CONFIGURATION_MONITOR_H_
|