aboutsummaryrefslogtreecommitdiff
path: root/tools/clang/blink_gc_plugin/tests/base_class_must_define_virtual_trace.cpp
blob: 66219f16bed6dd0af7282e285a18a4af8c9924d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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 "base_class_must_define_virtual_trace.h"

namespace blink {

void PartDerived::Trace(Visitor* visitor)
{
}

void HeapDerived::Trace(Visitor* visitor)
{
    visitor->Trace(m_part);
}


}