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

Unified Diff: third_party/WebKit/Source/core/html/HTMLHRElement.h

Issue 2109993003: Remove redundant calls to HTMLSelectElement::setRecalcListItems(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/html/HTMLHRElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLHRElement.h b/third_party/WebKit/Source/core/html/HTMLHRElement.h
index 9a841b46c7079bfdc17abb19c59a612ab9d6e2e6..5531b931fcb616cd38964c2429452f2135b92008 100644
--- a/third_party/WebKit/Source/core/html/HTMLHRElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLHRElement.h
@@ -27,6 +27,8 @@
namespace blink {
+class HTMLSelectElement;
+
class HTMLHRElement final : public HTMLElement {
DEFINE_WRAPPERTYPEINFO();
public:
@@ -36,9 +38,12 @@ public:
private:
explicit HTMLHRElement(Document&);
+ HTMLSelectElement* ownerSelectElement() const;
bool isPresentationAttribute(const QualifiedName&) const override;
void collectStyleForPresentationAttribute(const QualifiedName&, const AtomicString&, MutableStylePropertySet*) override;
+ InsertionNotificationRequest insertedInto(ContainerNode*) override;
+ void removedFrom(ContainerNode*) override;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698