OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2008 Apple Inc. All rights reserved. |
3 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> | 3 * Copyright (C) 2007 Nicholas Shanks <webkit@nickshanks.com> |
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 | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * | 8 * |
9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. 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 15 matching lines...) Expand all Loading... |
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | 26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
28 */ | 28 */ |
29 | 29 |
30 #include "config.h" | 30 #include "config.h" |
31 #include "core/platform/graphics/FontCache.h" | 31 #include "core/platform/graphics/FontCache.h" |
32 | 32 |
33 #include "FontFamilyNames.h" | 33 #include "FontFamilyNames.h" |
34 | 34 |
35 #include "RuntimeEnabledFeatures.h" | 35 #include "RuntimeEnabledFeatures.h" |
36 #include "core/platform/graphics/AlternateFontFamily.h" | |
37 #include "core/platform/graphics/Font.h" | 36 #include "core/platform/graphics/Font.h" |
38 #include "core/platform/graphics/FontFallbackList.h" | 37 #include "core/platform/graphics/FontFallbackList.h" |
39 #include "core/platform/graphics/FontPlatformData.h" | 38 #include "core/platform/graphics/FontPlatformData.h" |
40 #include "core/platform/graphics/opentype/OpenTypeVerticalData.h" | 39 #include "core/platform/graphics/opentype/OpenTypeVerticalData.h" |
| 40 #include "platform/fonts/AlternateFontFamily.h" |
41 #include "platform/fonts/FontCacheKey.h" | 41 #include "platform/fonts/FontCacheKey.h" |
42 #include "platform/fonts/FontDescription.h" | 42 #include "platform/fonts/FontDescription.h" |
43 #include "platform/fonts/FontSelector.h" | 43 #include "platform/fonts/FontSelector.h" |
44 #include "platform/fonts/FontSmoothingMode.h" | 44 #include "platform/fonts/FontSmoothingMode.h" |
45 #include "platform/fonts/TextRenderingMode.h" | 45 #include "platform/fonts/TextRenderingMode.h" |
46 #include "wtf/HashMap.h" | 46 #include "wtf/HashMap.h" |
47 #include "wtf/ListHashSet.h" | 47 #include "wtf/ListHashSet.h" |
48 #include "wtf/StdLibExtras.h" | 48 #include "wtf/StdLibExtras.h" |
49 #include "wtf/text/AtomicStringHash.h" | 49 #include "wtf/text/AtomicStringHash.h" |
50 #include "wtf/text/StringHash.h" | 50 #include "wtf/text/StringHash.h" |
(...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 clients.append(*it); | 453 clients.append(*it); |
454 | 454 |
455 ASSERT(numClients == clients.size()); | 455 ASSERT(numClients == clients.size()); |
456 for (size_t i = 0; i < numClients; ++i) | 456 for (size_t i = 0; i < numClients; ++i) |
457 clients[i]->fontCacheInvalidated(); | 457 clients[i]->fontCacheInvalidated(); |
458 | 458 |
459 purgeInactiveFontData(); | 459 purgeInactiveFontData(); |
460 } | 460 } |
461 | 461 |
462 } // namespace WebCore | 462 } // namespace WebCore |
OLD | NEW |