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

Unified Diff: Source/bindings/core/v8/ToV8Test.cpp

Issue 954683002: InlinedVisitor: Migrate bindings to use inlined tracing (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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: Source/bindings/core/v8/ToV8Test.cpp
diff --git a/Source/bindings/core/v8/ToV8Test.cpp b/Source/bindings/core/v8/ToV8Test.cpp
index 77b5e5465f01cf9fcf8c310ca91c07a05bc93803..30ed1b026d3b6a87142ebe8adcc78df8a883ac5e 100644
--- a/Source/bindings/core/v8/ToV8Test.cpp
+++ b/Source/bindings/core/v8/ToV8Test.cpp
@@ -46,7 +46,7 @@ public:
GarbageCollectedHolder(GarbageCollectedScriptWrappable* scriptWrappable)
: m_scriptWrappable(scriptWrappable) { }
- void trace(Visitor* visitor) { visitor->trace(m_scriptWrappable); }
+ DEFINE_INLINE_TRACE() { visitor->trace(m_scriptWrappable); }
// This should be public in order to access a Member<X> object.
Member<GarbageCollectedScriptWrappable> m_scriptWrappable;

Powered by Google App Engine
This is Rietveld 408576698