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

Unified Diff: Source/core/html/canvas/CanvasRenderingContext2D.h

Issue 678163002: Oilpan: move SVG property hierarchy to the heap. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 6 years, 2 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: Source/core/html/canvas/CanvasRenderingContext2D.h
diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.h b/Source/core/html/canvas/CanvasRenderingContext2D.h
index 563d3ca5668e1f2d927fc17b90298c0f04815fbf..ff24d21b56cba28d7d82566921f25e85c3cd83a9 100644
--- a/Source/core/html/canvas/CanvasRenderingContext2D.h
+++ b/Source/core/html/canvas/CanvasRenderingContext2D.h
@@ -122,11 +122,11 @@ public:
void save() { ++m_stateStack.last()->m_unrealizedSaveCount; }
void restore();
- PassRefPtr<SVGMatrixTearOff> currentTransform() const
+ PassRefPtrWillBeRawPtr<SVGMatrixTearOff> currentTransform() const
{
return SVGMatrixTearOff::create(state().m_transform);
}
- void setCurrentTransform(PassRefPtr<SVGMatrixTearOff>);
+ void setCurrentTransform(PassRefPtrWillBeRawPtr<SVGMatrixTearOff>);
void scale(float sx, float sy);
void rotate(float angleInRadians);

Powered by Google App Engine
This is Rietveld 408576698