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 17 matching lines...) Expand all Loading... |
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" | 36 #include "core/platform/graphics/AlternateFontFamily.h" |
37 #include "core/platform/graphics/Font.h" | 37 #include "core/platform/graphics/Font.h" |
38 #include "core/platform/graphics/FontCacheKey.h" | |
39 #include "core/platform/graphics/FontDescription.h" | |
40 #include "core/platform/graphics/FontFallbackList.h" | 38 #include "core/platform/graphics/FontFallbackList.h" |
41 #include "core/platform/graphics/FontPlatformData.h" | 39 #include "core/platform/graphics/FontPlatformData.h" |
42 #include "core/platform/graphics/FontSelector.h" | |
43 #include "core/platform/graphics/FontSmoothingMode.h" | |
44 #include "core/platform/graphics/TextRenderingMode.h" | |
45 #include "core/platform/graphics/opentype/OpenTypeVerticalData.h" | 40 #include "core/platform/graphics/opentype/OpenTypeVerticalData.h" |
| 41 #include "platform/fonts/FontCacheKey.h" |
| 42 #include "platform/fonts/FontDescription.h" |
| 43 #include "platform/fonts/FontSelector.h" |
| 44 #include "platform/fonts/FontSmoothingMode.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" |
51 | 51 |
52 using namespace WTF; | 52 using namespace WTF; |
53 | 53 |
54 namespace WebCore { | 54 namespace WebCore { |
55 | 55 |
(...skipping 397 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 |