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

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

Issue 2640963007: [wrapper-tracing] Remove flag and object grouping entry points (Closed)
Patch Set: Fix merge artifact Created 3 years, 11 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/ScriptWrappableVisitor.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp
index 80d5eb2e04cf31da638501873dba58023a5242b5..0b874b78c209b08171b9df29c7a158734e0459c7 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ScriptWrappableVisitor.cpp
@@ -223,9 +223,6 @@ void ScriptWrappableVisitor::markWrappersInAllWorlds(
void ScriptWrappableVisitor::writeBarrier(
const void* srcObject,
const TraceWrapperV8Reference<v8::Value>* dstObject) {
- if (!RuntimeEnabledFeatures::traceWrappablesEnabled()) {
- return;
- }
if (!srcObject || !dstObject || dstObject->isEmpty()) {
return;
}

Powered by Google App Engine
This is Rietveld 408576698