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

Unified Diff: third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp

Issue 1896793002: Rename (updateLayout/updateStyle).*.() to updateStyleAndLayout.*.() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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/svg/SVGGeometryElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
index 96c68cdafb8ed142fc55ec70a7ef7c570aa5ddad..e39e8b9ad5953bf57f2b51529664ab2302a26f70 100644
--- a/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGGeometryElement.cpp
@@ -46,7 +46,7 @@ SVGGeometryElement::SVGGeometryElement(const QualifiedName& tagName, Document& d
bool SVGGeometryElement::isPointInFill(SVGPointTearOff* point) const
{
- document().updateLayoutIgnorePendingStylesheets();
+ document().updateStyleAndLayoutIgnorePendingStylesheets();
// FIXME: Eventually we should support isPointInFill for display:none elements.
if (!layoutObject() || !layoutObject()->isSVGShape())
@@ -60,7 +60,7 @@ bool SVGGeometryElement::isPointInFill(SVGPointTearOff* point) const
bool SVGGeometryElement::isPointInStroke(SVGPointTearOff* point) const
{
- document().updateLayoutIgnorePendingStylesheets();
+ document().updateStyleAndLayoutIgnorePendingStylesheets();
// FIXME: Eventually we should support isPointInStroke for display:none elements.
if (!layoutObject() || !layoutObject()->isSVGShape())

Powered by Google App Engine
This is Rietveld 408576698