• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2017 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 
7 #include "core/fxge/android/cfpf_skiapathfont.h"
8 
CFPF_SkiaPathFont(const ByteString & path,const char * pFamily,uint32_t dwStyle,int32_t iFaceIndex,uint32_t dwCharsets,int32_t iGlyphNum)9 CFPF_SkiaPathFont::CFPF_SkiaPathFont(const ByteString& path,
10                                      const char* pFamily,
11                                      uint32_t dwStyle,
12                                      int32_t iFaceIndex,
13                                      uint32_t dwCharsets,
14                                      int32_t iGlyphNum)
15     : m_bsPath(path),
16       m_bsFamily(pFamily),
17       m_dwStyle(dwStyle),
18       m_iFaceIndex(iFaceIndex),
19       m_dwCharsets(dwCharsets),
20       m_iGlyphNum(iGlyphNum) {}
21 
22 CFPF_SkiaPathFont::~CFPF_SkiaPathFont() = default;
23