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

Side by Side Diff: third_party/WebKit/Source/core/css/CSSSegmentedFontFace.h

Issue 2813863003: Rewrite references to "wtf/" to "platform/wtf/" in core/css and core/style. (Closed)
Patch Set: Rebase. Created 3 years, 8 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) 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2008 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 12 matching lines...) Expand all
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef CSSSegmentedFontFace_h 26 #ifndef CSSSegmentedFontFace_h
27 #define CSSSegmentedFontFace_h 27 #define CSSSegmentedFontFace_h
28 28
29 #include "platform/fonts/FontCacheKey.h" 29 #include "platform/fonts/FontCacheKey.h"
30 #include "platform/fonts/FontTraits.h" 30 #include "platform/fonts/FontTraits.h"
31 #include "platform/fonts/SegmentedFontData.h" 31 #include "platform/fonts/SegmentedFontData.h"
32 #include "platform/heap/Handle.h" 32 #include "platform/heap/Handle.h"
33 #include "wtf/Forward.h" 33 #include "platform/wtf/Forward.h"
34 #include "wtf/HashMap.h" 34 #include "platform/wtf/HashMap.h"
35 #include "wtf/ListHashSet.h" 35 #include "platform/wtf/ListHashSet.h"
36 #include "wtf/Vector.h" 36 #include "platform/wtf/Vector.h"
37 #include "wtf/text/WTFString.h" 37 #include "platform/wtf/text/WTFString.h"
38 38
39 namespace blink { 39 namespace blink {
40 40
41 class CSSFontSelector; 41 class CSSFontSelector;
42 class FontData; 42 class FontData;
43 class FontDescription; 43 class FontDescription;
44 class FontFace; 44 class FontFace;
45 class SegmentedFontData; 45 class SegmentedFontData;
46 46
47 class CSSSegmentedFontFace final 47 class CSSSegmentedFontFace final
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 // CSSSegmentedFontFace in the style's font family list, so this is not 100 // CSSSegmentedFontFace in the style's font family list, so this is not
101 // counted if this font is used as a fallback font. Also, this may be double 101 // counted if this font is used as a fallback font. Also, this may be double
102 // counted by style recalcs. 102 // counted by style recalcs.
103 // TODO(ksakamoto): Revisit the necessity of this. crbug.com/613500 103 // TODO(ksakamoto): Revisit the necessity of this. crbug.com/613500
104 size_t approximate_character_count_; 104 size_t approximate_character_count_;
105 }; 105 };
106 106
107 } // namespace blink 107 } // namespace blink
108 108
109 #endif // CSSSegmentedFontFace_h 109 #endif // CSSSegmentedFontFace_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSRuleList.h ('k') | third_party/WebKit/Source/core/css/CSSSelector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698