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

Unified Diff: third_party/WebKit/Source/core/dom/IntersectionObservation.h

Issue 1548523002: Use Document, rather than document element, for implicit root. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@intersection-observer
Patch Set: rebaseline Created 4 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/core/dom/IntersectionObservation.h
diff --git a/third_party/WebKit/Source/core/dom/IntersectionObservation.h b/third_party/WebKit/Source/core/dom/IntersectionObservation.h
index e832c6213f2c2bae809479537a4c3a587e07aaff..63b9a464641294104f7848fc4994caadfdaf847b 100644
--- a/third_party/WebKit/Source/core/dom/IntersectionObservation.h
+++ b/third_party/WebKit/Source/core/dom/IntersectionObservation.h
@@ -12,6 +12,7 @@ namespace blink {
class Element;
class IntersectionObserver;
+class Node;
class IntersectionObservation : public GarbageCollectedFinalized<IntersectionObservation> {
public:
@@ -24,7 +25,7 @@ public:
};
IntersectionObserver& observer() const { return *m_observer; }
- Element* target() const { return m_target.get(); }
+ Element* target() const;
bool isActive() const { return m_active; }
void setActive(bool active) { m_active = active; }
unsigned lastThresholdIndex() const { return m_lastThresholdIndex; }
@@ -43,7 +44,7 @@ private:
bool computeGeometry(IntersectionGeometry&);
Member<IntersectionObserver> m_observer;
- WeakPtrWillBeWeakMember<Element> m_target;
+ WeakPtrWillBeWeakMember<Node> m_target;
ojan 2016/01/12 01:28:18 Isn't target still always an Element?
szager1 2016/01/12 21:19:51 Yeah, this weird, but this comes from NodeIntersec
unsigned m_active : 1;
unsigned m_shouldReportRootBounds : 1;
unsigned m_lastThresholdIndex : 30;

Powered by Google App Engine
This is Rietveld 408576698