Index: third_party/WebKit/public/platform/modules/font_access/WebFontAccessDescription.h |
diff --git a/third_party/WebKit/public/platform/modules/font_access/WebFontAccessDescription.h b/third_party/WebKit/public/platform/modules/font_access/WebFontAccessDescription.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..f168830bce4cf58b002784bea44a81440c005ca5 |
--- /dev/null |
+++ b/third_party/WebKit/public/platform/modules/font_access/WebFontAccessDescription.h |
@@ -0,0 +1,30 @@ |
+// 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 WebFontAccessDescription_h |
+#define WebFontAccessDescription_h |
+ |
+#include "public/platform/WebCallbacks.h" |
+#include "public/platform/WebPassOwnPtr.h" |
+#include "public/platform/WebString.h" |
+#include "public/platform/WebVector.h" |
+ |
+namespace blink { |
+ |
+struct WebFontAccessDescription { |
+ WebFontAccessDescription(const WebString& family, const WebString& style, const WebString& fullName) |
+ : family(family) |
+ , style(style) |
+ , fullName(fullName) |
+ { |
+ } |
+ |
+ WebString family; |
+ WebString style; |
+ WebString fullName; |
+}; |
+ |
+} // namespace blink |
+ |
+#endif // WebFontAccessDescription_h |