blob: 2b4fe06305dc39e5ecf5900d426e5da60bac70a2 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FontTestHelpers_h
#define FontTestHelpers_h
#include "wtf/Forward.h"
namespace blink {
class Font;
namespace testing {
// Reads a font from a specified path, for use in unit tests only.
Font createTestFont(const AtomicString& familyName,
const String& fontPath,
float size);
} // namespace testing
} // namespace blink
#endif // FontTestHelpers_h