summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Bindings/Wrapper.h
blob: 11da182ea6d05116d5217ecc1218a6374b095a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/*
 * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/NonnullRefPtr.h>
#include <AK/Weakable.h>
#include <LibJS/Runtime/Object.h>
#include <LibWeb/Forward.h>

namespace Web::Bindings {

class Wrapper
    : public JS::Object
    , public Weakable<Wrapper> {
    JS_OBJECT(Wrapper, JS::Object);

public:
protected:
    explicit Wrapper(Object& prototype)
        : Object(prototype)
    {
    }

#ifdef JS_TRACK_ZOMBIE_CELLS
    virtual void did_become_zombie() override
    {
        revoke_weak_ptrs();
    }
#endif
};

}