blob: 100bc2e793e14b99f0380e6ff7988a604686e0af [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/ozone/platform/x11/x11_window_manager_ozone.h"
#include "ui/ozone/platform/x11/x11_window_ozone.h"
namespace ui {
X11WindowManagerOzone::X11WindowManagerOzone() : event_grabber_(nullptr) {}
X11WindowManagerOzone::~X11WindowManagerOzone() {}
void X11WindowManagerOzone::GrabEvents(X11WindowOzone* window) {
if (event_grabber_ == window)
return;
X11WindowOzone* old_grabber = event_grabber_;
if (old_grabber)
old_grabber->OnLostCapture();
event_grabber_ = window;
}
void X11WindowManagerOzone::UngrabEvents(X11WindowOzone* window) {
if (event_grabber_ != window)
return;
event_grabber_->OnLostCapture();
event_grabber_ = nullptr;
}
} // namespace ui