chromium/ui/gfx/x/event.cc

// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ui/gfx/x/event.h"

#include <xcb/xcb.h>

#include <cstring>

#include "base/check_op.h"
#include "base/memory/scoped_refptr.h"
#include "ui/gfx/x/connection.h"
#include "ui/gfx/x/xproto.h"
#include "ui/gfx/x/xproto_internal.h"
#include "ui/gfx/x/xproto_types.h"

namespace x11 {

Event::Event() = default;

Event::Event(scoped_refptr<UnsizedRefCountedMemory> event_bytes,
             Connection* connection) {}

Event::Event(Event&& event) {}

Event& Event::operator=(Event&& event) {}

Event::~Event() = default;

void Event::Parse(void* event, Parser parser, Deleter deleter) {}

}  // namespace x11