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

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 upto r185213 Created 6 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: Source/core/html/canvas/CanvasRenderingContext2D.h
diff --git a/Source/core/html/canvas/CanvasRenderingContext2D.h b/Source/core/html/canvas/CanvasRenderingContext2D.h
index 2d1e310647c1d5f610510b46c8dd8ccac0a8690a..7119a6906e5836796745e9ebb882de637f274d1d 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);
« no previous file with comments | « Source/core/css/resolver/StyleResourceLoader.cpp ('k') | Source/core/html/canvas/CanvasRenderingContext2D.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698