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

Side by Side Diff: Source/platform/fonts/FontCache.h

Issue 524773004: Clean up forward declarations in Source/platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 years, 3 months 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/platform/fonts/Font.h ('k') | Source/platform/fonts/FontFallbackList.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 Computer, Inc. All rights reserved. 2 * Copyright (C) 2006, 2008 Apple Computer, Inc. All rights reserved.
3 * Copyright (C) 2007-2008 Torch Mobile, Inc. 3 * Copyright (C) 2007-2008 Torch Mobile, Inc.
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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 #include <unicode/uscript.h> 53 #include <unicode/uscript.h>
54 #endif 54 #endif
55 55
56 class SkTypeface; 56 class SkTypeface;
57 57
58 namespace blink { 58 namespace blink {
59 59
60 class FontCacheClient; 60 class FontCacheClient;
61 class FontFaceCreationParams; 61 class FontFaceCreationParams;
62 class FontPlatformData; 62 class FontPlatformData;
63 class FontData;
64 class FontDescription; 63 class FontDescription;
65 class OpenTypeVerticalData; 64 class OpenTypeVerticalData;
66 class SimpleFontData; 65 class SimpleFontData;
67 66
68 enum ShouldRetain { Retain, DoNotRetain }; 67 enum ShouldRetain { Retain, DoNotRetain };
69 enum PurgeSeverity { PurgeIfNeeded, ForcePurge }; 68 enum PurgeSeverity { PurgeIfNeeded, ForcePurge };
70 69
71 class PLATFORM_EXPORT FontCache { 70 class PLATFORM_EXPORT FontCache {
72 friend class FontCachePurgePreventer; 71 friend class FontCachePurgePreventer;
73 72
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 175
177 class PLATFORM_EXPORT FontCachePurgePreventer { 176 class PLATFORM_EXPORT FontCachePurgePreventer {
178 public: 177 public:
179 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); } 178 FontCachePurgePreventer() { FontCache::fontCache()->disablePurging(); }
180 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); } 179 ~FontCachePurgePreventer() { FontCache::fontCache()->enablePurging(); }
181 }; 180 };
182 181
183 } // namespace blink 182 } // namespace blink
184 183
185 #endif 184 #endif
OLDNEW
« no previous file with comments | « Source/platform/fonts/Font.h ('k') | Source/platform/fonts/FontFallbackList.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698