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

Side by Side Diff: tools/clang/blink_gc_plugin/tests/legacy_naming/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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef STATIC_SINGLETON_H_
6 #define STATIC_SINGLETON_H_
7
8 #include "heap/stubs.h"
9
10 namespace blink {
11
12 class AScriptWrappable : public GarbageCollected<AScriptWrappable>,
13 public ScriptWrappable {
14 void trace(Visitor* visitor) { visitor->trace(a_); }
15
16 private:
17 Member<AScriptWrappable> a_;
18 };
19
20 class BScriptWrappable : public GarbageCollected<AScriptWrappable> {
21 void trace(Visitor* visitor) { visitor->trace(a_); }
22
23 private:
24 Member<AScriptWrappable> a_;
25 };
26
27 class HeapObject : public GarbageCollected<HeapObject> {
28 public:
29 static HeapObject& instance();
30
31 void trace(Visitor* visitor) { visitor->trace(b_); }
32
33 private:
34 Member<BScriptWrappable> b_;
35 };
36
37 } // namespace blink
38
39 #endif // STATIC_SINGLETON_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698