Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Unified Diff: tools/clang/blink_gc_plugin/tests/static_singleton.h

Issue 2696713003: blink_gc_plugin: detect singletons with embedded ScriptWrappables.
Patch Set: non-copying iteration Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/clang/blink_gc_plugin/tests/static_singleton.h
diff --git a/tools/clang/blink_gc_plugin/tests/static_singleton.h b/tools/clang/blink_gc_plugin/tests/static_singleton.h
new file mode 100644
index 0000000000000000000000000000000000000000..9534f29b65e80b944d9116fb76dc7c8d34f99a80
--- /dev/null
+++ b/tools/clang/blink_gc_plugin/tests/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_

Powered by Google App Engine
This is Rietveld 408576698