| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007, 2008, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2007, 2008, 2011 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 WTF_MAKE_NONCOPYABLE(CSSFontFaceSource); | 42 WTF_MAKE_NONCOPYABLE(CSSFontFaceSource); |
| 43 public: | 43 public: |
| 44 virtual ~CSSFontFaceSource(); | 44 virtual ~CSSFontFaceSource(); |
| 45 | 45 |
| 46 virtual bool isLocal() const { return false; } | 46 virtual bool isLocal() const { return false; } |
| 47 virtual bool isLoading() const { return false; } | 47 virtual bool isLoading() const { return false; } |
| 48 virtual bool isLoaded() const { return true; } | 48 virtual bool isLoaded() const { return true; } |
| 49 virtual bool isValid() const { return true; } | 49 virtual bool isValid() const { return true; } |
| 50 | 50 |
| 51 virtual FontResource* resource() { return nullptr; } | 51 virtual FontResource* resource() { return nullptr; } |
| 52 void setFontFace(CSSFontFace*); | 52 void setFontFace(CSSFontFace* face) { m_face = face; } |
| 53 | 53 |
| 54 PassRefPtr<SimpleFontData> getFontData(const FontDescription&); | 54 PassRefPtr<SimpleFontData> getFontData(const FontDescription&); |
| 55 | 55 |
| 56 virtual bool isLocalFontAvailable(const FontDescription&) { return false; } | 56 virtual bool isLocalFontAvailable(const FontDescription&) { return false; } |
| 57 virtual void beginLoadIfNeeded() { } | 57 virtual void beginLoadIfNeeded() { } |
| 58 | 58 |
| 59 // For UMA reporting | 59 // For UMA reporting |
| 60 virtual bool hadBlankText() { return false; } | 60 virtual bool hadBlankText() { return false; } |
| 61 | 61 |
| 62 DECLARE_VIRTUAL_TRACE(); | 62 DECLARE_VIRTUAL_TRACE(); |
| 63 | 63 |
| 64 protected: | 64 protected: |
| 65 CSSFontFaceSource(); | 65 CSSFontFaceSource(); |
| 66 virtual PassRefPtr<SimpleFontData> createFontData(const FontDescription&) =
0; | 66 virtual PassRefPtr<SimpleFontData> createFontData(const FontDescription&) =
0; |
| 67 | 67 |
| 68 using FontDataTable = HashMap<unsigned, RefPtr<SimpleFontData>>; // The hash
key is composed of size synthetic styles. | 68 using FontDataTable = HashMap<unsigned, RefPtr<SimpleFontData>>; // The hash
key is composed of size synthetic styles. |
| 69 | 69 |
| 70 RawPtrWillBeMember<CSSFontFace> m_face; // Our owning font face. | 70 RawPtrWillBeMember<CSSFontFace> m_face; // Our owning font face. |
| 71 FontDataTable m_fontDataTable; | 71 FontDataTable m_fontDataTable; |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } | 74 } |
| 75 | 75 |
| 76 #endif | 76 #endif |
| OLD | NEW |