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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutObject.cpp

Issue 2514573003: Update documentation and cleanup impls for localToSVGParentTransform() (Closed)
Patch Set: - Created 4 years, 1 month 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/layout/LayoutObject.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
index 495abb158f8491cada883438c03bb6ec6b2d065f..22c9acdecad7fc9b01f776650e8885a8d5bcc3b9 100644
--- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
@@ -3280,13 +3280,7 @@ FloatRect LayoutObject::visualRectInLocalSVGCoordinates() const {
}
AffineTransform LayoutObject::localSVGTransform() const {
- static const AffineTransform identity;
- return identity;
-}
-
-const AffineTransform& LayoutObject::localToSVGParentTransform() const {
- static const AffineTransform identity;
- return identity;
+ return AffineTransform();
}
bool LayoutObject::nodeAtFloatPoint(HitTestResult&,

Powered by Google App Engine
This is Rietveld 408576698