// 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 BASE_REQUIRES_TRACING_H_ #define BASE_REQUIRES_TRACING_H_ #include "heap/stubs.h" namespace blink { class A : public GarbageCollected { public: virtual void Trace(Visitor*); }; class B : public A { // Does not need Trace }; class C : public B { public: void Trace(Visitor*); private: Member m_a; }; class D : public C { public: void Trace(Visitor*); private: Member m_a; }; } #endif