blob: a2a3d41eb436be69bc41c72dfe072598e1a3ebb7 [file] [log] [blame]
// Copyright 2016 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/cfx_substfont.h"
CFX_SubstFont::CFX_SubstFont() = default;
CFX_SubstFont::~CFX_SubstFont() = default;
int CFX_SubstFont::GetOriginalWeight() const {
int weight = m_Weight;
// Perform the inverse weight adjustment of UseChromeSerif() to get the
// original font weight.
if (m_Family == "Chrome Serif")
weight = weight * 5 / 4;
return weight;
}
void CFX_SubstFont::UseChromeSerif() {
m_Weight = m_Weight * 4 / 5;
m_Family = "Chrome Serif";
}