chromium/ui/ozone/platform/wayland/host/gtk_primary_selection_device_manager.cc

// Copyright 2019 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/ozone/platform/wayland/host/gtk_primary_selection_device_manager.h"

#include <gtk-primary-selection-client-protocol.h>

#include <memory>

#include "base/logging.h"
#include "ui/ozone/platform/wayland/host/gtk_primary_selection_device.h"
#include "ui/ozone/platform/wayland/host/wayland_connection.h"
#include "ui/ozone/platform/wayland/host/wayland_data_source.h"
#include "ui/ozone/platform/wayland/host/wayland_seat.h"

namespace ui {

namespace {
constexpr uint32_t kMinVersion =;
}

// static
constexpr char GtkPrimarySelectionDeviceManager::kInterfaceName[];

// static
void GtkPrimarySelectionDeviceManager::Instantiate(
    WaylandConnection* connection,
    wl_registry* registry,
    uint32_t name,
    const std::string& interface,
    uint32_t version) {}

GtkPrimarySelectionDeviceManager::GtkPrimarySelectionDeviceManager(
    gtk_primary_selection_device_manager* manager,
    WaylandConnection* connection)
    :{}

GtkPrimarySelectionDeviceManager::~GtkPrimarySelectionDeviceManager() = default;

GtkPrimarySelectionDevice* GtkPrimarySelectionDeviceManager::GetDevice() {}

std::unique_ptr<GtkPrimarySelectionSource>
GtkPrimarySelectionDeviceManager::CreateSource(
    GtkPrimarySelectionSource::Delegate* delegate) {}

}  // namespace ui