Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(281)

Side by Side Diff: Source/core/platform/graphics/FontCache.cpp

Issue 48113009: Move Font related classes to Source/platform/fonts (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix mac export Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/platform/graphics/FontCache.h ('k') | Source/core/platform/graphics/FontCacheKey.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/FontCache.h ('k') | Source/core/platform/graphics/FontCacheKey.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698