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

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

Issue 1449623002: IntersectionObserver: second cut. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: Add missing break, rebaseline, no config.h Created 5 years 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/Element.h
diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h
index 3226de50f813870b89433d27506dbdecfb13ded2..4a28407f71921b40992e04297015026f19bc790a 100644
--- a/third_party/WebKit/Source/core/dom/Element.h
+++ b/third_party/WebKit/Source/core/dom/Element.h
@@ -52,6 +52,7 @@ class CustomElementDefinition;
class DOMStringMap;
class DOMTokenList;
class Dictionary;
+class ElementIntersectionObserverData;
class ElementRareData;
class ElementShadow;
class ExceptionState;
@@ -553,6 +554,9 @@ public:
SpellcheckAttributeState spellcheckAttributeState() const;
+ bool hasIntersectionObserverData() const;
esprehn 2015/12/22 07:50:32 Yeah, if you make this be two methods: * intersec
+ ElementIntersectionObserverData& ensureIntersectionObserverData();
+
protected:
Element(const QualifiedName& tagName, Document*, ConstructionType);

Powered by Google App Engine
This is Rietveld 408576698