blob: 6eeb01ed95a3351a14de1c363d40726290b1851b [file] [log] [blame]
// 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.
#include "class_requires_finalization_base.h"
namespace blink {
void NeedsFinalizer::Trace(Visitor* visitor)
{
A::Trace(visitor);
}
void DoesNotNeedFinalizer::Trace(Visitor* visitor)
{
A::Trace(visitor);
}
}