#include "ui/gfx/x/wm_sync.h"
#include "ui/gfx/x/connection.h"
#include "ui/gfx/x/event.h"
namespace x11 {
namespace {
Window GetWindowForEvent(const Event& event) { … }
}
WmSync::WmSync(Connection* connection, base::OnceClosure on_synced)
: … { … }
WmSync::WmSync(Connection* connection,
base::OnceClosure on_synced,
bool sync_with_wm)
: … { … }
WmSync::~WmSync() { … }
void WmSync::OnEvent(const Event& xevent) { … }
void WmSync::OnGetInputFocusResponse(GetInputFocusResponse response) { … }
void WmSync::Cleanup() { … }
}