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

Side by Side Diff: tools/clang/blink_gc_plugin/tests/legacy_naming/static_singleton.cpp

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 #include "static_singleton.h"
6
7 #define DEFINE_STATIC_LOCAL(Type, Name) \
8 BLINK_STATIC_SINGLETON() \
9 static Persistent<Type> Name(new Type)
10
11 namespace blink {
12
13 HeapObject& HeapObject::instance() {
14 DEFINE_STATIC_LOCAL(HeapObject, object);
15 return *object;
16 }
17
18 namespace {
19
20 HeapObject& instance(int i) {
21 if (i > 2) {
22 DEFINE_STATIC_LOCAL(HeapObject, object);
23 return *object;
24 }
25 DEFINE_STATIC_LOCAL(HeapObject, object);
26 return *object;
27 }
28
29 HeapObject& instance_ignored() {
30 GC_PLUGIN_IGNORE("")
31 DEFINE_STATIC_LOCAL(HeapObject, object);
32 return *object;
33 }
34
35 } // namespace
36
37 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698