Index: Source/platform/graphics/GraphicsContext.cpp |
diff --git a/Source/platform/graphics/GraphicsContext.cpp b/Source/platform/graphics/GraphicsContext.cpp |
index 7124c12763c5a0536dac96b6574e54f521da817e..6db32aa9afce64dbda614e5235db916bda376b50 100644 |
--- a/Source/platform/graphics/GraphicsContext.cpp |
+++ b/Source/platform/graphics/GraphicsContext.cpp |
@@ -348,7 +348,7 @@ bool GraphicsContext::getTransformedClipBounds(FloatRect* bounds) const |
SkIRect skIBounds; |
if (!m_canvas->getClipDeviceBounds(&skIBounds)) |
return false; |
- SkRect skBounds = SkRect::MakeFromIRect(skIBounds); |
+ SkRect skBounds = SkRect::Make(skIBounds); |
*bounds = FloatRect(skBounds); |
return true; |
} |