// 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 TRACE_IF_NEEDED_H_ #define TRACE_IF_NEEDED_H_ #include "heap/stubs.h" namespace blink { class HeapObject : public GarbageCollected { }; template class TemplatedObject : public GarbageCollected > { public: virtual void Trace(Visitor*); private: T m_one; T m_two; }; class InstantiatedObject : public TemplatedObject > { }; } #endif