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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/layout/svg/SVGTextLayoutAttributesBuilder.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
index 9e27a08ce3020227ab6b7014725ab088f576e294..366cab942423cddc51fb9054680c07abac7a7272 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/SVGTextLayoutAttributesBuilder.cpp
@@ -177,11 +177,11 @@ static inline void updateCharacterData(unsigned i, float& lastRotation, SVGChara
void SVGTextLayoutAttributesBuilder::fillCharacterDataMap(const TextPosition& position)
{
- RefPtrWillBeRawPtr<SVGLengthList> xList = position.element->x()->currentValue();
- RefPtrWillBeRawPtr<SVGLengthList> yList = position.element->y()->currentValue();
- RefPtrWillBeRawPtr<SVGLengthList> dxList = position.element->dx()->currentValue();
- RefPtrWillBeRawPtr<SVGLengthList> dyList = position.element->dy()->currentValue();
- RefPtrWillBeRawPtr<SVGNumberList> rotateList = position.element->rotate()->currentValue();
+ RawPtr<SVGLengthList> xList = position.element->x()->currentValue();
+ RawPtr<SVGLengthList> yList = position.element->y()->currentValue();
+ RawPtr<SVGLengthList> dxList = position.element->dx()->currentValue();
+ RawPtr<SVGLengthList> dyList = position.element->dy()->currentValue();
+ RawPtr<SVGNumberList> rotateList = position.element->rotate()->currentValue();
unsigned xListSize = xList->length();
unsigned yListSize = yList->length();

Powered by Google App Engine
This is Rietveld 408576698