summaryrefslogtreecommitdiff
path: root/core/fxge/android/cfpf_skiafontdescriptor.cpp
diff options
context:
space:
mode:
authorLei Zhang <thestig@chromium.org>2017-08-17 01:31:18 -0700
committerChromium commit bot <commit-bot@chromium.org>2017-08-17 10:13:18 +0000
commit19319b7d047e50c54ff845715553adf4652cd793 (patch)
tree0cd4f485359fa1daa306ac892e02425b52eb3e9a /core/fxge/android/cfpf_skiafontdescriptor.cpp
parent2e56505ed801ee6da3ecb7a1dfe0473941028c6e (diff)
downloadpdfium-19319b7d047e50c54ff845715553adf4652cd793.tar.xz
Roll build_revision to bff6ee8.
Also roll buildtools_revision to f90f6a5 and update Android code that did not previously pass the Chromium style plugin. TBR=dsinclair@chromium.org Change-Id: Ifb1193cee8f68ac99a31c8d43195e4d7005eeafb Reviewed-on: https://pdfium-review.googlesource.com/11293 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Lei Zhang <thestig@chromium.org>
Diffstat (limited to 'core/fxge/android/cfpf_skiafontdescriptor.cpp')
-rw-r--r--core/fxge/android/cfpf_skiafontdescriptor.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/core/fxge/android/cfpf_skiafontdescriptor.cpp b/core/fxge/android/cfpf_skiafontdescriptor.cpp
new file mode 100644
index 0000000000..0c5210795c
--- /dev/null
+++ b/core/fxge/android/cfpf_skiafontdescriptor.cpp
@@ -0,0 +1,32 @@
+// Copyright 2017 PDFium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
+
+#include "core/fxge/android/cfpf_skiafontdescriptor.h"
+
+#include "core/fxcrt/fx_memory.h"
+
+CFPF_SkiaFontDescriptor::CFPF_SkiaFontDescriptor()
+ : m_pFamily(nullptr),
+ m_dwStyle(0),
+ m_iFaceIndex(0),
+ m_dwCharsets(0),
+ m_iGlyphNum(0) {}
+
+CFPF_SkiaFontDescriptor::~CFPF_SkiaFontDescriptor() {
+ FX_Free(m_pFamily);
+}
+
+int32_t CFPF_SkiaFontDescriptor::GetType() const {
+ return FPF_SKIAFONTTYPE_Unknown;
+}
+
+void CFPF_SkiaFontDescriptor::SetFamily(const char* pFamily) {
+ FX_Free(m_pFamily);
+ int32_t iSize = FXSYS_strlen(pFamily);
+ m_pFamily = FX_Alloc(char, iSize + 1);
+ memcpy(m_pFamily, pFamily, iSize * sizeof(char));
+ m_pFamily[iSize] = 0;
+}