// 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/test/server_object.h" namespace wl { bool ResourceHasImplementation(wl_resource* resource, const wl_interface* interface, const void* impl) { … } void DestroyResource(wl_client* client, wl_resource* resource) { … } ServerObject::ServerObject(wl_resource* resource) : … { … } ServerObject::~ServerObject() { … } // static void ServerObject::OnResourceDestroyed(wl_resource* resource) { … } } // namespace wl