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 r
ights reserved. | 6 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012 Apple Inc. All r
ights reserved. |
7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) | 7 * Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved. (http://www.t
orchmobile.com/) |
8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 8 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
9 * Copyright (C) 2011 Google Inc. All rights reserved. | 9 * Copyright (C) 2011 Google Inc. All rights reserved. |
10 * | 10 * |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
81 | 81 |
82 const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet>>& documentAuthorSty
leSheets() const { return m_authorStyleSheets; } | 82 const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet>>& documentAuthorSty
leSheets() const { return m_authorStyleSheets; } |
83 | 83 |
84 const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet>> activeStyleSheetsF
orInspector() const; | 84 const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet>> activeStyleSheetsF
orInspector() const; |
85 | 85 |
86 void modifiedStyleSheet(StyleSheet*); | 86 void modifiedStyleSheet(StyleSheet*); |
87 void addStyleSheetCandidateNode(Node*, bool createdByParser); | 87 void addStyleSheetCandidateNode(Node*, bool createdByParser); |
88 void removeStyleSheetCandidateNode(Node*); | 88 void removeStyleSheetCandidateNode(Node*); |
89 void removeStyleSheetCandidateNode(Node*, TreeScope&); | 89 void removeStyleSheetCandidateNode(Node*, TreeScope&); |
90 void modifiedStyleSheetCandidateNode(Node*); | 90 void modifiedStyleSheetCandidateNode(Node*); |
91 void setExitTransitionStylesheetsEnabled(bool); | |
92 | 91 |
93 void addAuthorSheet(PassRefPtrWillBeRawPtr<StyleSheetContents> authorSheet); | 92 void addAuthorSheet(PassRefPtrWillBeRawPtr<StyleSheetContents> authorSheet); |
94 | 93 |
95 void clearMediaQueryRuleSetStyleSheets(); | 94 void clearMediaQueryRuleSetStyleSheets(); |
96 void updateStyleSheetsInImport(DocumentStyleSheetCollector& parentCollector)
; | 95 void updateStyleSheetsInImport(DocumentStyleSheetCollector& parentCollector)
; |
97 void updateActiveStyleSheets(StyleResolverUpdateMode); | 96 void updateActiveStyleSheets(StyleResolverUpdateMode); |
98 | 97 |
99 String preferredStylesheetSetName() const { return m_preferredStylesheetSetN
ame; } | 98 String preferredStylesheetSetName() const { return m_preferredStylesheetSetN
ame; } |
100 String selectedStylesheetSetName() const { return m_selectedStylesheetSetNam
e; } | 99 String selectedStylesheetSetName() const { return m_selectedStylesheetSetNam
e; } |
101 void setPreferredStylesheetSetName(const String& name) { m_preferredStyleshe
etSetName = name; } | 100 void setPreferredStylesheetSetName(const String& name) { m_preferredStyleshe
etSetName = name; } |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 | 297 |
299 RefPtrWillBeMember<CSSFontSelector> m_fontSelector; | 298 RefPtrWillBeMember<CSSFontSelector> m_fontSelector; |
300 | 299 |
301 WillBeHeapHashMap<AtomicString, RawPtrWillBeMember<StyleSheetContents>> m_te
xtToSheetCache; | 300 WillBeHeapHashMap<AtomicString, RawPtrWillBeMember<StyleSheetContents>> m_te
xtToSheetCache; |
302 WillBeHeapHashMap<RawPtrWillBeMember<StyleSheetContents>, AtomicString> m_sh
eetToTextCache; | 301 WillBeHeapHashMap<RawPtrWillBeMember<StyleSheetContents>, AtomicString> m_sh
eetToTextCache; |
303 }; | 302 }; |
304 | 303 |
305 } | 304 } |
306 | 305 |
307 #endif | 306 #endif |
OLD | NEW |