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

Unified Diff: third_party/WebKit/Source/core/html/HTMLSelectElement.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/HTMLSelectElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.h b/third_party/WebKit/Source/core/html/HTMLSelectElement.h
index b40b12eaab56ae333d8adb19a631369f88ab7f7f..8482039825b46731573effd93392eb4ecf260128 100644
--- a/third_party/WebKit/Source/core/html/HTMLSelectElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.h
@@ -38,6 +38,8 @@ namespace blink {
class AutoscrollController;
class ExceptionState;
+class HTMLHRElement;
+class HTMLOptGroupElement;
class HTMLOptionElement;
class HTMLOptionElementOrHTMLOptGroupElement;
class HTMLElementOrLong;
@@ -123,6 +125,9 @@ public:
void optionRemoved(const HTMLOptionElement&);
bool anonymousIndexedSetter(unsigned, HTMLOptionElement*, ExceptionState&);
+ void optGroupInsertedOrRemoved(const HTMLOptGroupElement&);
+ void hrInsertedOrRemoved(const HTMLHRElement&);
+
void updateListOnLayoutObject();
HTMLOptionElement* spatialNavigationFocusedOption();
@@ -245,7 +250,6 @@ private:
AutoscrollController* autoscrollController() const;
void scrollToOptionTask();
- void childrenChanged(const ChildrenChange&) override;
bool areAuthorShadowsAllowed() const override { return false; }
void finishParsingChildren() override;

Powered by Google App Engine
This is Rietveld 408576698