OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef WebFontAccessDescription_h |
| 6 #define WebFontAccessDescription_h |
| 7 |
| 8 #include "public/platform/WebCallbacks.h" |
| 9 #include "public/platform/WebPassOwnPtr.h" |
| 10 #include "public/platform/WebString.h" |
| 11 #include "public/platform/WebVector.h" |
| 12 |
| 13 namespace blink { |
| 14 |
| 15 struct WebFontAccessDescription { |
| 16 WebFontAccessDescription(const WebString& family, const WebString& style, co
nst WebString& fullName) |
| 17 : family(family) |
| 18 , style(style) |
| 19 , fullName(fullName) |
| 20 { |
| 21 } |
| 22 |
| 23 WebString family; |
| 24 WebString style; |
| 25 WebString fullName; |
| 26 }; |
| 27 |
| 28 } // namespace blink |
| 29 |
| 30 #endif // WebFontAccessDescription_h |
OLD | NEW |