OLD | NEW |
(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 |
OLD | NEW |