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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorVerifier.h

Issue 2434763002: [wrapper-tracing] Bring remoteplayback up to date (Closed)
Patch Set: Reset bingings results Created 4 years, 2 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: third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorVerifier.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorVerifier.h b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorVerifier.h
index 995795db2546f69cddb57ac5c867793fc101a613..d0b14d6dc7876b0b368fc301b1a230dd86c18d09 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorVerifier.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitorVerifier.h
@@ -22,6 +22,9 @@ class ScriptWrappableVisitorVerifier : public WrapperVisitor {
void dispatchTraceWrappers(const ScriptWrappable* t) const override {
t->traceWrappers(this);
}
+ void dispatchTraceWrappers(const TraceWrapperBase* t) const override {
+ t->traceWrappers(this);
+ }
#define DECLARE_DISPATCH_TRACE_WRAPPERS(className) \
void dispatchTraceWrappers(const className* t) const override { \
t->traceWrappers(this); \

Powered by Google App Engine
This is Rietveld 408576698