chromium/tools/clang/blink_gc_plugin/tests/ref_ptr_to_gc_managed_class.h

// 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