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

Unified Diff: third_party/WebKit/Source/core/html/HTMLSelectElement.cpp

Issue 2658073003: Remove redundant argument being passed to didRecalcStyle (Closed)
Patch Set: Created 3 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
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSelectElement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
index db8af6744e0bbcb9994a38bfaa966165909090ab..432dec6c0f7a48104a9deed4f5be6355663a4d71 100644
--- a/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLSelectElement.cpp
@@ -1948,8 +1948,8 @@ void HTMLSelectElement::hidePopup() {
m_popup->hide();
}
-void HTMLSelectElement::didRecalcStyle(StyleRecalcChange change) {
- HTMLFormControlElementWithState::didRecalcStyle(change);
+void HTMLSelectElement::didRecalcStyle() {
+ HTMLFormControlElementWithState::didRecalcStyle();
if (popupIsVisible())
m_popup->updateFromElement(PopupMenu::ByStyleChange);
}
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSelectElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698