Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / analyzer / DescendantInvalidationSet.h
index d434553..38e58b7 100644 (file)
@@ -57,8 +57,11 @@ public:
     void addId(const AtomicString& id);
     void addTagName(const AtomicString& tagName);
 
-    void setWholeSubtreeInvalid() { m_allDescendantsMightBeInvalid = true; };
+    // Appends the classes in this DescendantInvalidationSet to the vector.
+    void getClasses(Vector<AtomicString>& classes);
 
+    void setWholeSubtreeInvalid() { m_allDescendantsMightBeInvalid = true; };
+    bool wholeSubtreeInvalid() { return m_allDescendantsMightBeInvalid; }
 private:
     DescendantInvalidationSet();