Index: tools/clang/blink_gc_plugin/tests/legacy_naming/heap/stubs.h |
diff --git a/tools/clang/blink_gc_plugin/tests/legacy_naming/heap/stubs.h b/tools/clang/blink_gc_plugin/tests/legacy_naming/heap/stubs.h |
index 2b965df50029ab289138fd25a7458082058c20f5..3289a4b0d0037297a044083979672e6e1b5d7c9b 100644 |
--- a/tools/clang/blink_gc_plugin/tests/legacy_naming/heap/stubs.h |
+++ b/tools/clang/blink_gc_plugin/tests/legacy_naming/heap/stubs.h |
@@ -188,6 +188,9 @@ using namespace WTF; |
#define GC_PLUGIN_IGNORE(bug) \ |
__attribute__((annotate("blink_gc_plugin_ignore"))) |
+#define BLINK_STATIC_SINGLETON() \ |
+ __attribute__((annotate("blink_gc_singleton_type"))) |
+ |
#define USING_GARBAGE_COLLECTED_MIXIN(type) \ |
public: \ |
virtual void adjustAndMark(Visitor*) const override { } \ |
@@ -219,9 +222,10 @@ public: |
template<typename T> class Persistent { |
public: |
- operator T*() const { return 0; } |
- T* operator->() { return 0; } |
- bool operator!() const { return false; } |
+ explicit Persistent(T*) {} |
+ operator T*() const { return 0; } |
+ T* operator->() { return 0; } |
+ bool operator!() const { return false; } |
}; |
template<typename T> class WeakPersistent { |
@@ -297,6 +301,7 @@ struct TraceIfNeeded { |
static void trace(Visitor*, T*); |
}; |
+class ScriptWrappable {}; |
} |
namespace WTF { |