1 // Copyright 2018 Google LLC. 2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. 3 #ifndef SkPDFSubsetFont_DEFINED 4 #define SkPDFSubsetFont_DEFINED 5 6 #include "include/core/SkRefCnt.h" 7 8 class SkData; 9 class SkPDFGlyphUse; 10 class SkTypeface; 11 12 sk_sp<SkData> SkPDFSubsetFont(const SkTypeface& typeface, const SkPDFGlyphUse& glyphUsage); 13 14 #endif // SkPDFSubsetFont_DEFINED 15