| Index: third_party/WebKit/Source/bindings/core/v8/custom/V8IntersectionObserverCustom.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/custom/V8IntersectionObserverCustom.cpp b/third_party/WebKit/Source/bindings/core/v8/custom/V8IntersectionObserverCustom.cpp
|
| index 58aad44e4fd8383319a0ed23c2650d702871389f..10b52be1839a21cb013ef283580c034d5763cca4 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/custom/V8IntersectionObserverCustom.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/custom/V8IntersectionObserverCustom.cpp
|
| @@ -60,20 +60,4 @@ void V8IntersectionObserver::constructorCustom(
|
| info.GetIsolate(), observer, &wrapperTypeInfo, wrapper));
|
| }
|
|
|
| -void V8IntersectionObserver::visitDOMWrapperCustom(
|
| - v8::Isolate* isolate,
|
| - ScriptWrappable* scriptWrappable,
|
| - const v8::Persistent<v8::Object>& wrapper) {
|
| - IntersectionObserver* observer =
|
| - scriptWrappable->toImpl<IntersectionObserver>();
|
| - for (auto& observation : observer->observations()) {
|
| - Element* target = observation->target();
|
| - if (!target)
|
| - continue;
|
| - v8::UniqueId id(reinterpret_cast<intptr_t>(
|
| - V8GCController::opaqueRootForGC(isolate, target)));
|
| - isolate->SetReferenceFromGroup(id, wrapper);
|
| - }
|
| -}
|
| -
|
| } // namespace blink
|
|
|