Chromium Code Reviews| Index: third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h |
| diff --git a/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h b/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h |
| index 0bef99ee629614eaf4044374528e81fd3c151030..9adfc7176b3e6aff7705ee816de22b911e5b1014 100644 |
| --- a/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h |
| +++ b/third_party/WebKit/Source/platform/graphics/paint/TransformPaintPropertyNode.h |
| @@ -21,7 +21,7 @@ namespace blink { |
| // for the root. |
| class PLATFORM_EXPORT TransformPaintPropertyNode : public RefCounted<TransformPaintPropertyNode> { |
| public: |
| - static PassRefPtr<TransformPaintPropertyNode> create(const TransformationMatrix& matrix, const FloatPoint3D& origin, PassRefPtr<TransformPaintPropertyNode> parent = nullptr) |
| + static RefPtr<TransformPaintPropertyNode> create(const TransformationMatrix& matrix, const FloatPoint3D& origin, PassRefPtr<TransformPaintPropertyNode> parent = nullptr) |
|
Xianzhu
2016/06/22 23:20:30
Why this change?
wkorman
2016/06/22 23:33:33
Clip and Effect headers are like this as well, sho
chrishtr
2016/06/23 00:18:27
Fixed.
|
| { |
| return adoptRef(new TransformPaintPropertyNode(matrix, origin, parent)); |
| } |