blob: 15ac216869b4b81d94878ffcb7b4765513a0a108 [file] [log] [blame]
// Copyright 2014 The Chromium Authors
// 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:
scoped_refptr<HeapObject> m_obj;
};
class HeapObject : public GarbageCollected<HeapObject> {
public:
void Trace(Visitor*) const;
private:
PartObject m_part;
Vector<scoped_refptr<HeapObject>> m_objs;
};
}
#endif