Index: third_party/WebKit/Source/core/dom/IntersectionObserverEntry.h |
diff --git a/third_party/WebKit/Source/core/dom/IntersectionObserverEntry.h b/third_party/WebKit/Source/core/dom/IntersectionObserverEntry.h |
index cd260ebc48f9fcfef48ff5f629a0fea1b24182f7..9e99b6942ddfda18cf9c8054f33ce75310988a4d 100644 |
--- a/third_party/WebKit/Source/core/dom/IntersectionObserverEntry.h |
+++ b/third_party/WebKit/Source/core/dom/IntersectionObserverEntry.h |
@@ -15,11 +15,10 @@ namespace blink { |
class Element; |
-class IntersectionObserverEntry final : public GarbageCollectedFinalized<IntersectionObserverEntry>, public ScriptWrappable { |
+class IntersectionObserverEntry final : public GarbageCollected<IntersectionObserverEntry>, public ScriptWrappable { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
IntersectionObserverEntry(DOMHighResTimeStamp timestamp, double intersectionRatio, const IntRect& boundingClientRect, const IntRect* rootBounds, const IntRect& intersectionRect, Element*); |
- ~IntersectionObserverEntry(); |
double time() const { return m_time; } |
double intersectionRatio() const { return m_intersectionRatio; } |