Index: tools/PictureRenderer.cpp |
diff --git a/tools/PictureRenderer.cpp b/tools/PictureRenderer.cpp |
index 3793b8546191de67e045f41f481f75fa4747def4..dd4cea481d1f6b1f86fea400400b79a607fa13e2 100644 |
--- a/tools/PictureRenderer.cpp |
+++ b/tools/PictureRenderer.cpp |
@@ -363,7 +363,7 @@ bool RecordPictureRenderer::render(SkBitmap** out) { |
SkAutoTUnref<SkPicture> picture(recorder.endRecording()); |
if (!fWritePath.isEmpty()) { |
// Record the new picture as a new SKP with PNG encoded bitmaps. |
- SkString skpPath = SkOSPath::SkPathJoin(fWritePath.c_str(), fInputFilename.c_str()); |
+ SkString skpPath = SkOSPath::Join(fWritePath.c_str(), fInputFilename.c_str()); |
SkFILEWStream stream(skpPath.c_str()); |
picture->serialize(&stream, &encode_bitmap_to_data); |
return true; |