| 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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 | 103 |
| 104 bool needsActiveStyleUpdate() const; | 104 bool needsActiveStyleUpdate() const; |
| 105 void setNeedsActiveStyleUpdate(StyleSheet*, StyleResolverUpdateMode); | 105 void setNeedsActiveStyleUpdate(StyleSheet*, StyleResolverUpdateMode); |
| 106 void addStyleSheetCandidateNode(Node&); | 106 void addStyleSheetCandidateNode(Node&); |
| 107 void removeStyleSheetCandidateNode(Node&); | 107 void removeStyleSheetCandidateNode(Node&); |
| 108 void removeStyleSheetCandidateNode(Node&, TreeScope&); | 108 void removeStyleSheetCandidateNode(Node&, TreeScope&); |
| 109 void modifiedStyleSheetCandidateNode(Node&); | 109 void modifiedStyleSheetCandidateNode(Node&); |
| 110 void watchedSelectorsChanged(); | 110 void watchedSelectorsChanged(); |
| 111 void initialViewportChanged(); | 111 void initialViewportChanged(); |
| 112 void viewportRulesChanged(); | 112 void viewportRulesChanged(); |
| 113 void importRemoved(); |
| 113 | 114 |
| 114 void injectAuthorSheet(StyleSheetContents* authorSheet); | 115 void injectAuthorSheet(StyleSheetContents* authorSheet); |
| 115 CSSStyleSheet& ensureInspectorStyleSheet(); | 116 CSSStyleSheet& ensureInspectorStyleSheet(); |
| 116 RuleSet* watchedSelectorsRuleSet() { | 117 RuleSet* watchedSelectorsRuleSet() { |
| 117 return m_globalRuleSet.watchedSelectorsRuleSet(); | 118 return m_globalRuleSet.watchedSelectorsRuleSet(); |
| 118 } | 119 } |
| 119 | 120 |
| 120 void clearMediaQueryRuleSetStyleSheets(); | 121 void clearMediaQueryRuleSetStyleSheets(); |
| 121 void updateStyleSheetsInImport(DocumentStyleSheetCollector& parentCollector); | 122 void updateStyleSheetsInImport(DocumentStyleSheetCollector& parentCollector); |
| 122 void updateActiveStyleSheets(StyleResolverUpdateMode); | 123 void updateActiveStyleSheets(StyleResolverUpdateMode); |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 364 | 365 |
| 365 std::unique_ptr<StyleResolverStats> m_styleResolverStats; | 366 std::unique_ptr<StyleResolverStats> m_styleResolverStats; |
| 366 unsigned m_styleForElementCount = 0; | 367 unsigned m_styleForElementCount = 0; |
| 367 | 368 |
| 368 friend class StyleEngineTest; | 369 friend class StyleEngineTest; |
| 369 }; | 370 }; |
| 370 | 371 |
| 371 } // namespace blink | 372 } // namespace blink |
| 372 | 373 |
| 373 #endif | 374 #endif |
| OLD | NEW |