| Index: tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.h
|
| diff --git a/tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.h b/tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.h
|
| index 4c721568aa6a0f34d7f3ca6c12d9cd9a5bbbc50a..074582fc6f5beacb35d963889d3df307287d8061 100644
|
| --- a/tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.h
|
| +++ b/tools/clang/blink_gc_plugin/tests/destructor_access_finalized_field.h
|
| @@ -19,7 +19,7 @@ class HeapObject;
|
| class PartOther {
|
| ALLOW_ONLY_INLINE_ALLOCATION();
|
| public:
|
| - void trace(Visitor*);
|
| + void Trace(Visitor*);
|
|
|
| HeapObject* obj() { return m_obj; }
|
|
|
| @@ -30,7 +30,7 @@ private:
|
| class HeapObject : public GarbageCollectedFinalized<HeapObject> {
|
| public:
|
| ~HeapObject();
|
| - void trace(Visitor*);
|
| + void Trace(Visitor*);
|
| bool foo() { return true; }
|
| void bar(HeapObject*) { }
|
| private:
|
|
|