Index: Source/core/css/FontStyleMatcher.h |
diff --git a/Source/core/css/FontStyleMatcher.h b/Source/core/css/FontStyleMatcher.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..292adc9eba975783b9ad703feed8ec75fc321170 |
--- /dev/null |
+++ b/Source/core/css/FontStyleMatcher.h |
@@ -0,0 +1,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; |
+}; |
+ |
+} |
+ |
+#endif |