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

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

Issue 2940933003: DO NOT SUBMIT results of new clang-format (Closed)
Patch Set: Created 3 years, 6 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
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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698