chromium/third_party/webrtc/modules/desktop_capture/linux/x11/shared_x_display.cc

/*
 *  Copyright (c) 2013 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 "modules/desktop_capture/linux/x11/shared_x_display.h"

#include <X11/Xlib.h>
#include <X11/extensions/XTest.h>

#include <algorithm>

#include "absl/strings/string_view.h"
#include "rtc_base/checks.h"
#include "rtc_base/logging.h"

namespace webrtc {

SharedXDisplay::SharedXDisplay(Display* display) :{}

SharedXDisplay::~SharedXDisplay() {}

// static
rtc::scoped_refptr<SharedXDisplay> SharedXDisplay::Create(
    absl::string_view display_name) {}

// static
rtc::scoped_refptr<SharedXDisplay> SharedXDisplay::CreateDefault() {}

void SharedXDisplay::AddEventHandler(int type, XEventHandler* handler) {}

void SharedXDisplay::RemoveEventHandler(int type, XEventHandler* handler) {}

void SharedXDisplay::ProcessPendingXEvents() {}

void SharedXDisplay::IgnoreXServerGrabs() {}

}  // namespace webrtc