blob: 026a6c315c443012bb6048541bc61b30243fd446 [file] [log] [blame]
// Copyright 2020 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 TRACE_IF_NEEDED_RESOLVED_H_
#define TRACE_IF_NEEDED_RESOLVED_H_
#include "heap/stubs.h"
namespace blink {
class HeapObject : public GarbageCollected<HeapObject> {
public:
virtual void Trace(Visitor*) const;
private:
Member<HeapObject> m_one;
int m_two;
};
} // namespace blink
#endif