summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/core/css/FontStyleMatcher.h
blob: 0c07c3bf812e2825ca0bb702429ee696e2fd2921 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2015 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 FontStyleMatcher_h
#define FontStyleMatcher_h

#include "platform/fonts/FontTraits.h"

namespace blink {

class CSSSegmentedFontFace;

class FontStyleMatcher final {
public:
    explicit FontStyleMatcher(const FontTraits& fontTraits) : m_fontTraits(fontTraits) {};
    bool isCandidateBetter(CSSSegmentedFontFace* candidate, CSSSegmentedFontFace* current);

private:
    FontStyleMatcher();
    const FontTraits& m_fontTraits;
};

} // namespace blink

#endif