// 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 { public: virtual void Trace(Visitor*); private: Member m_one; int m_two; }; } // namespace blink #endif