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

Unified Diff: tools/clang/blink_gc_plugin/tests/heap/stubs.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/heap/stubs.h
diff --git a/tools/clang/blink_gc_plugin/tests/heap/stubs.h b/tools/clang/blink_gc_plugin/tests/heap/stubs.h
index 4f172734c83110e3dca98b3fd840ff9f604d9ee1..0e3d961baeb94f143908a66cd0375d924d5e6a01 100644
--- a/tools/clang/blink_gc_plugin/tests/heap/stubs.h
+++ b/tools/clang/blink_gc_plugin/tests/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,7 +301,9 @@ struct TraceIfNeeded {
static void Trace(Visitor*, T*);
};
-}
+class ScriptWrappable {};
+
+} // namespace blink
namespace WTF {
« no previous file with comments | « tools/clang/blink_gc_plugin/RecordInfo.cpp ('k') | tools/clang/blink_gc_plugin/tests/legacy_naming/heap/stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698