summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/font_access/font_metadata.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/third_party/blink/renderer/modules/font_access/font_metadata.cc')
-rw-r--r--chromium/third_party/blink/renderer/modules/font_access/font_metadata.cc24
1 files changed, 24 insertions, 0 deletions
diff --git a/chromium/third_party/blink/renderer/modules/font_access/font_metadata.cc b/chromium/third_party/blink/renderer/modules/font_access/font_metadata.cc
new file mode 100644
index 00000000000..ff7f2f0b7b2
--- /dev/null
+++ b/chromium/third_party/blink/renderer/modules/font_access/font_metadata.cc
@@ -0,0 +1,24 @@
+// Copyright 2020 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.
+
+#include "third_party/blink/renderer/modules/font_access/font_metadata.h"
+
+#include "third_party/blink/renderer/platform/fonts/font_cache.h"
+
+namespace blink {
+
+FontMetadata::FontMetadata(const FontEnumerationEntry& entry)
+ : postscriptName_(entry.postscript_name),
+ fullName_(entry.full_name),
+ family_(entry.family) {}
+
+FontMetadata* FontMetadata::Create(const FontEnumerationEntry& entry) {
+ return MakeGarbageCollected<FontMetadata>(entry);
+}
+
+void FontMetadata::Trace(blink::Visitor* visitor) {
+ ScriptWrappable::Trace(visitor);
+}
+
+} // namespace blink