Index: tools/clang/blink_gc_plugin/tests/legacy_naming/static_singleton.h |
diff --git a/tools/clang/blink_gc_plugin/tests/legacy_naming/static_singleton.h b/tools/clang/blink_gc_plugin/tests/legacy_naming/static_singleton.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e38c873ec16d6a1b911ba735e18e8a45d966c8fb |
--- /dev/null |
+++ b/tools/clang/blink_gc_plugin/tests/legacy_naming/static_singleton.h |
@@ -0,0 +1,39 @@ |
+// Copyright 2017 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 STATIC_SINGLETON_H_ |
+#define STATIC_SINGLETON_H_ |
+ |
+#include "heap/stubs.h" |
+ |
+namespace blink { |
+ |
+class AScriptWrappable : public GarbageCollected<AScriptWrappable>, |
+ public ScriptWrappable { |
+ void trace(Visitor* visitor) { visitor->trace(a_); } |
+ |
+ private: |
+ Member<AScriptWrappable> a_; |
+}; |
+ |
+class BScriptWrappable : public GarbageCollected<AScriptWrappable> { |
+ void trace(Visitor* visitor) { visitor->trace(a_); } |
+ |
+ private: |
+ Member<AScriptWrappable> a_; |
+}; |
+ |
+class HeapObject : public GarbageCollected<HeapObject> { |
+ public: |
+ static HeapObject& instance(); |
+ |
+ void trace(Visitor* visitor) { visitor->trace(b_); } |
+ |
+ private: |
+ Member<BScriptWrappable> b_; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // STATIC_SINGLETON_H_ |