1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 20:47:45 +00:00

LibWeb: Remove now-unused Bindings::Wrapper class

This commit is contained in:
Andreas Kling 2022-09-04 17:09:45 +02:00
parent 3768743a0a
commit 39660a8680
8 changed files with 1 additions and 48 deletions

View file

@ -1,18 +0,0 @@
/*
* Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/Bindings/Wrapper.h>
namespace Web::Bindings {
Wrapper::Wrapper(Object& prototype)
: PlatformObject(prototype)
{
}
Wrapper::~Wrapper() = default;
}

View file

@ -1,25 +0,0 @@
/*
* Copyright (c) 2020-2022, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Weakable.h>
#include <LibWeb/Bindings/PlatformObject.h>
#include <LibWeb/Forward.h>
namespace Web::Bindings {
class Wrapper : public PlatformObject {
WEB_PLATFORM_OBJECT(Wrapper, PlatformObject);
public:
virtual ~Wrapper() override;
protected:
explicit Wrapper(Object& prototype);
};
}