| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Apple Computer, Inc. | 2 * Copyright (C) 2007 Apple Computer, Inc. |
| 3 * Copyright (c) 2007, 2008, 2009, Google Inc. All rights reserved. | 3 * Copyright (c) 2007, 2008, 2009, Google Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #ifndef FontCustomPlatformData_h | 32 #ifndef FontCustomPlatformData_h |
| 33 #define FontCustomPlatformData_h | 33 #define FontCustomPlatformData_h |
| 34 | 34 |
| 35 #include "platform/PlatformExport.h" | 35 #include "platform/PlatformExport.h" |
| 36 #include "platform/fonts/FontOrientation.h" | 36 #include "platform/fonts/FontOrientation.h" |
| 37 #include "wtf/Allocator.h" | 37 #include "wtf/Allocator.h" |
| 38 #include "wtf/Forward.h" | 38 #include "wtf/Forward.h" |
| 39 #include "wtf/Noncopyable.h" | 39 #include "wtf/Noncopyable.h" |
| 40 #include "wtf/RefPtr.h" | 40 #include "wtf/RefPtr.h" |
| 41 #include "wtf/text/WTFString.h" | 41 #include "wtf/text/WTFString.h" |
| 42 #include <memory> |
| 42 | 43 |
| 43 class SkTypeface; | 44 class SkTypeface; |
| 44 | 45 |
| 45 namespace blink { | 46 namespace blink { |
| 46 | 47 |
| 47 class FontPlatformData; | 48 class FontPlatformData; |
| 48 class SharedBuffer; | 49 class SharedBuffer; |
| 49 | 50 |
| 50 class PLATFORM_EXPORT FontCustomPlatformData { | 51 class PLATFORM_EXPORT FontCustomPlatformData { |
| 51 USING_FAST_MALLOC(FontCustomPlatformData); | 52 USING_FAST_MALLOC(FontCustomPlatformData); |
| 52 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData); | 53 WTF_MAKE_NONCOPYABLE(FontCustomPlatformData); |
| 53 public: | 54 public: |
| 54 static PassOwnPtr<FontCustomPlatformData> create(SharedBuffer*, String& otsP
arseMessage); | 55 static std::unique_ptr<FontCustomPlatformData> create(SharedBuffer*, String&
otsParseMessage); |
| 55 ~FontCustomPlatformData(); | 56 ~FontCustomPlatformData(); |
| 56 | 57 |
| 57 FontPlatformData fontPlatformData(float size, bool bold, bool italic, FontOr
ientation = FontOrientation::Horizontal); | 58 FontPlatformData fontPlatformData(float size, bool bold, bool italic, FontOr
ientation = FontOrientation::Horizontal); |
| 58 | 59 |
| 59 static bool supportsFormat(const String&); | 60 static bool supportsFormat(const String&); |
| 60 | 61 |
| 61 private: | 62 private: |
| 62 explicit FontCustomPlatformData(PassRefPtr<SkTypeface>); | 63 explicit FontCustomPlatformData(PassRefPtr<SkTypeface>); |
| 63 RefPtr<SkTypeface> m_typeface; | 64 RefPtr<SkTypeface> m_typeface; |
| 64 }; | 65 }; |
| 65 | 66 |
| 66 } // namespace blink | 67 } // namespace blink |
| 67 | 68 |
| 68 #endif // FontCustomPlatformData_h | 69 #endif // FontCustomPlatformData_h |
| OLD | NEW |