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

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

Issue 227083006: [Oilpan]: Moving the FontSelector/FontCacheClient, CSSSegmentedFontFace, and FontFaceCache to the o… (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review feedback Created 6 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/css/CSSFontSelector.cpp ('k') | Source/core/css/FontFaceCache.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) 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
11 * documentation and/or other materials provided with the distribution. 11 * documentation and/or other materials provided with the distribution.
12 * 12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY 13 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR 16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 17 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
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/FontTraits.h" 29 #include "platform/fonts/FontTraits.h"
30 #include "platform/heap/Handle.h"
30 #include "wtf/HashMap.h" 31 #include "wtf/HashMap.h"
31 #include "wtf/ListHashSet.h" 32 #include "wtf/ListHashSet.h"
32 #include "wtf/PassRefPtr.h" 33 #include "wtf/PassRefPtr.h"
33 #include "wtf/RefCounted.h" 34 #include "wtf/RefCounted.h"
34 #include "wtf/Vector.h" 35 #include "wtf/Vector.h"
35 #include "wtf/text/WTFString.h" 36 #include "wtf/text/WTFString.h"
36 37
37 namespace WebCore { 38 namespace WebCore {
38 39
39 class CSSFontFace; 40 class CSSFontFace;
40 class CSSFontSelector; 41 class CSSFontSelector;
41 class FontData; 42 class FontData;
42 class FontDescription; 43 class FontDescription;
43 class FontFace; 44 class FontFace;
44 class SegmentedFontData; 45 class SegmentedFontData;
45 46
46 class CSSSegmentedFontFace : public RefCounted<CSSSegmentedFontFace> { 47 class CSSSegmentedFontFace : public RefCountedWillBeGarbageCollectedFinalized<CS SSegmentedFontFace> {
47 public: 48 public:
48 static PassRefPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector, Fo ntTraits traits) 49 static PassRefPtrWillBeRawPtr<CSSSegmentedFontFace> create(CSSFontSelector* selector, FontTraits traits)
49 { 50 {
50 return adoptRef(new CSSSegmentedFontFace(selector, traits)); 51 return adoptRefWillBeNoop(new CSSSegmentedFontFace(selector, traits));
51 } 52 }
52 ~CSSSegmentedFontFace(); 53 ~CSSSegmentedFontFace();
53 54
54 CSSFontSelector* fontSelector() const { return m_fontSelector; } 55 CSSFontSelector* fontSelector() const { return m_fontSelector; }
55 FontTraits traits() const { return m_traits; } 56 FontTraits traits() const { return m_traits; }
56 57
57 void fontLoaded(CSSFontFace*); 58 void fontLoaded(CSSFontFace*);
58 void fontLoadWaitLimitExceeded(CSSFontFace*); 59 void fontLoadWaitLimitExceeded(CSSFontFace*);
59 60
60 void addFontFace(PassRefPtr<FontFace>, bool cssConnected); 61 void addFontFace(PassRefPtr<FontFace>, bool cssConnected);
61 void removeFontFace(PassRefPtr<FontFace>); 62 void removeFontFace(PassRefPtr<FontFace>);
62 bool isEmpty() const { return m_fontFaces.isEmpty(); } 63 bool isEmpty() const { return m_fontFaces.isEmpty(); }
63 64
64 PassRefPtr<FontData> getFontData(const FontDescription&); 65 PassRefPtr<FontData> getFontData(const FontDescription&);
65 66
66 bool checkFont(const String&) const; 67 bool checkFont(const String&) const;
67 void match(const String&, Vector<RefPtr<FontFace> >&) const; 68 void match(const String&, Vector<RefPtr<FontFace> >&) const;
68 void willUseFontData(const FontDescription&); 69 void willUseFontData(const FontDescription&);
69 70
71 void trace(Visitor* visitor) { visitor->trace(m_fontSelector); }
72
70 private: 73 private:
71 CSSSegmentedFontFace(CSSFontSelector*, FontTraits); 74 CSSSegmentedFontFace(CSSFontSelector*, FontTraits);
72 75
73 void pruneTable(); 76 void pruneTable();
74 bool isValid() const; 77 bool isValid() const;
75 bool isLoading() const; 78 bool isLoading() const;
76 bool isLoaded() const; 79 bool isLoaded() const;
77 80
78 typedef ListHashSet<RefPtr<FontFace> > FontFaceList; 81 typedef ListHashSet<RefPtr<FontFace> > FontFaceList;
79 82
80 CSSFontSelector* m_fontSelector; 83 RawPtrWillBeMember<CSSFontSelector> m_fontSelector;
zerny-chromium 2014/04/08 12:10:20 This could potentially change lifetime of the font
wibling-chromium 2014/04/08 12:47:23 The code already assumes the m_fontSelector is pre
81 FontTraits m_traits; 84 FontTraits m_traits;
82 HashMap<unsigned, RefPtr<SegmentedFontData> > m_fontDataTable; 85 HashMap<unsigned, RefPtr<SegmentedFontData> > m_fontDataTable;
83 // All non-CSS-connected FontFaces are stored after the CSS-connected ones. 86 // All non-CSS-connected FontFaces are stored after the CSS-connected ones.
84 FontFaceList m_fontFaces; 87 FontFaceList m_fontFaces;
85 FontFaceList::iterator m_firstNonCssConnectedFace; 88 FontFaceList::iterator m_firstNonCssConnectedFace;
86 }; 89 };
87 90
88 } // namespace WebCore 91 } // namespace WebCore
89 92
90 #endif // CSSSegmentedFontFace_h 93 #endif // CSSSegmentedFontFace_h
OLDNEW
« no previous file with comments | « Source/core/css/CSSFontSelector.cpp ('k') | Source/core/css/FontFaceCache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698