| OLD | NEW |
| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 | 48 |
| 49 #include "SkFontMgr.h" | 49 #include "SkFontMgr.h" |
| 50 | 50 |
| 51 class SkString; | 51 class SkString; |
| 52 class SkTypeface; | 52 class SkTypeface; |
| 53 | 53 |
| 54 namespace base { | 54 namespace base { |
| 55 namespace trace_event { | 55 namespace trace_event { |
| 56 class ProcessMemoryDump; | 56 class ProcessMemoryDump; |
| 57 } | 57 } |
| 58 } | 58 } // namespace base |
| 59 | 59 |
| 60 namespace blink { | 60 namespace blink { |
| 61 | 61 |
| 62 class FontCacheClient; | 62 class FontCacheClient; |
| 63 class FontFaceCreationParams; | 63 class FontFaceCreationParams; |
| 64 class FontPlatformData; | 64 class FontPlatformData; |
| 65 class FontDescription; | 65 class FontDescription; |
| 66 class OpenTypeVerticalData; | 66 class OpenTypeVerticalData; |
| 67 class ShapeCache; | 67 class ShapeCache; |
| 68 class SimpleFontData; | 68 class SimpleFontData; |
| (...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 public: | 303 public: |
| 304 FontCachePurgePreventer() { FontCache::GetFontCache()->DisablePurging(); } | 304 FontCachePurgePreventer() { FontCache::GetFontCache()->DisablePurging(); } |
| 305 ~FontCachePurgePreventer() { FontCache::GetFontCache()->EnablePurging(); } | 305 ~FontCachePurgePreventer() { FontCache::GetFontCache()->EnablePurging(); } |
| 306 }; | 306 }; |
| 307 | 307 |
| 308 AtomicString ToAtomicString(const SkString&); | 308 AtomicString ToAtomicString(const SkString&); |
| 309 | 309 |
| 310 } // namespace blink | 310 } // namespace blink |
| 311 | 311 |
| 312 #endif | 312 #endif |
| OLD | NEW |