aboutsummaryrefslogtreecommitdiffhomepage
path: root/dm
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-12-20 14:09:20 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-12-20 19:32:36 +0000
commite7a58321bbbe094ca0f9b03e25843f7666d5c198 (patch)
treeb94ae7763971fc8243369323c68d34864c265123 /dm
parent2a7f0aa9ebfd66c902dcf1a0ca86ced9fde60d5a (diff)
make InternalOnly_ functions actually private
Bug: skia: Change-Id: Id06ad4283a0cd9835b3349c783b705b30435855a Reviewed-on: https://skia-review.googlesource.com/87980 Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Mike Reed <reed@google.com>
Diffstat (limited to 'dm')
-rw-r--r--dm/DMSrcSink.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/dm/DMSrcSink.cpp b/dm/DMSrcSink.cpp
index f8be87f592..c8a4bc2911 100644
--- a/dm/DMSrcSink.cpp
+++ b/dm/DMSrcSink.cpp
@@ -35,6 +35,7 @@
#include "SkOSFile.h"
#include "SkOSPath.h"
#include "SkOpts.h"
+#include "SkPictureCommon.h"
#include "SkPictureData.h"
#include "SkPictureRecorder.h"
#include "SkPipe.h"
@@ -1175,7 +1176,7 @@ static SkRect get_cull_rect_for_skp(const char* path) {
return SkRect::MakeEmpty();
}
SkPictInfo info;
- if (!SkPicture::InternalOnly_StreamIsSKP(stream.get(), &info)) {
+ if (!SkPicture_StreamIsSKP(stream.get(), &info)) {
return SkRect::MakeEmpty();
}