aboutsummaryrefslogtreecommitdiff
path: root/tools/clang/blink_gc_plugin/tests/cycle_sub.h
blob: a007061e1ce3572becdd85fe6fa03064fc4126da (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 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CYCLE_SUB_H_
#define CYCLE_SUB_H_

#include "heap/stubs.h"

namespace blink {

class C;

// This contains a leaking cycle:
// C -per-> A -sub-> B -ref-> C

class A : public GarbageCollectedFinalized<A> {
public:
    virtual void trace(Visitor*) {}
};

class B : public A {
public:
    virtual void trace(Visitor*);
private:
    RefPtr<C> m_c;
};

class C : public RefCounted<C> {
private:
    Persistent<A> m_a;
};

}

#endif