aboutsummaryrefslogtreecommitdiff
path: root/tools/clang/blink_gc_plugin/tests/ref_ptr_to_gc_managed_class.h
blob: 24ff08c0b0ce52d549a7dc6da08beae422726531 (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
// 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 REF_PTR_TO_GC_MANAGED_CLASS_H_
#define REF_PTR_TO_GC_MANAGED_CLASS_H_

#include "heap/stubs.h"

namespace blink {

class HeapObject;

class PartObject {
    DISALLOW_NEW();
private:
    RefPtr<HeapObject> m_obj;
};

class HeapObject : public GarbageCollectedFinalized<HeapObject> {
public:
    void Trace(Visitor*);
private:
    PartObject m_part;
    Vector<RefPtr<HeapObject> > m_objs;
};

}

#endif