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:
parent
3768743a0a
commit
39660a8680
8 changed files with 1 additions and 48 deletions
|
@ -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;
|
||||
|
||||
}
|
|
@ -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);
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue