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_skiabufferfont.h" 8 CFPF_SkiaBufferFont()9CFPF_SkiaBufferFont::CFPF_SkiaBufferFont() 10 : m_pBuffer(nullptr), m_szBuffer(0) {} 11 12 CFPF_SkiaBufferFont::~CFPF_SkiaBufferFont() = default; 13 GetType() const14int32_t CFPF_SkiaBufferFont::GetType() const { 15 return FPF_SKIAFONTTYPE_Buffer; 16 } 17