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

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

Issue 2475733002: [wrapper-tracing] Remove uses of EmbedderReachableReferenceReporter (Closed)
Patch Set: Remove more dead code Created 4 years, 1 month 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/ScriptWrappableVisitor.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h
index 44d922d9c5398511537ef43a58809d2e88b35536..21c5e6c9b29e1d4d46f61c6280f50291fa82f8da 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.h
@@ -100,7 +100,7 @@ class CORE_EXPORT ScriptWrappableVisitor : public WrapperVisitor,
*/
static void performCleanup(v8::Isolate*);
- void TracePrologue(v8::EmbedderReachableReferenceReporter*) override;
+ void TracePrologue() override;
static WrapperVisitor* currentVisitor(v8::Isolate*);
@@ -268,12 +268,6 @@ class CORE_EXPORT ScriptWrappableVisitor : public WrapperVisitor,
*/
mutable WTF::Vector<HeapObjectHeader*> m_headersToUnmark;
v8::Isolate* m_isolate;
-
- /**
- * A reporter instance set in TracePrologue and cleared in TraceEpilogue,
- * which is used to report all reachable references back to v8.
- */
- v8::EmbedderReachableReferenceReporter* m_reporter = nullptr;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698