OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) | 5 * (C) 2006 Alexey Proskuryakov (ap@webkit.org) |
6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All |
7 * rights reserved. | 7 * rights reserved. |
8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. | 8 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. |
9 * (http://www.torchmobile.com/) | 9 * (http://www.torchmobile.com/) |
10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 | 201 |
202 CSSFontSelector* fontSelector() { return m_fontSelector; } | 202 CSSFontSelector* fontSelector() { return m_fontSelector; } |
203 void setFontSelector(CSSFontSelector*); | 203 void setFontSelector(CSSFontSelector*); |
204 | 204 |
205 void removeFontFaceRules(const HeapVector<Member<const StyleRuleFontFace>>&); | 205 void removeFontFaceRules(const HeapVector<Member<const StyleRuleFontFace>>&); |
206 void clearFontCache(); | 206 void clearFontCache(); |
207 // updateGenericFontFamilySettings is used from WebSettingsImpl. | 207 // updateGenericFontFamilySettings is used from WebSettingsImpl. |
208 void updateGenericFontFamilySettings(); | 208 void updateGenericFontFamilySettings(); |
209 | 209 |
210 void didDetach(); | 210 void didDetach(); |
211 void resolverChanged(StyleResolverUpdateMode) {} | |
212 | 211 |
213 CSSStyleSheet* createSheet(Element&, | 212 CSSStyleSheet* createSheet(Element&, |
214 const String& text, | 213 const String& text, |
215 TextPosition startPosition, | 214 TextPosition startPosition, |
216 StyleEngineContext&); | 215 StyleEngineContext&); |
217 | 216 |
218 void collectScopedStyleFeaturesTo(RuleFeatureSet&) const; | 217 void collectScopedStyleFeaturesTo(RuleFeatureSet&) const; |
219 void ensureUAStyleForFullscreen(); | 218 void ensureUAStyleForFullscreen(); |
220 void ensureUAStyleForElement(const Element&); | 219 void ensureUAStyleForElement(const Element&); |
221 | 220 |
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 | 366 |
368 std::unique_ptr<StyleResolverStats> m_styleResolverStats; | 367 std::unique_ptr<StyleResolverStats> m_styleResolverStats; |
369 unsigned m_styleForElementCount = 0; | 368 unsigned m_styleForElementCount = 0; |
370 | 369 |
371 friend class StyleEngineTest; | 370 friend class StyleEngineTest; |
372 }; | 371 }; |
373 | 372 |
374 } // namespace blink | 373 } // namespace blink |
375 | 374 |
376 #endif | 375 #endif |
OLD | NEW |