Chromium Code Reviews| 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 86 | 86 |
| 87 DocumentOrderedList& styleSheetCandidateNodes() { return m_styleSheetCandida teNodes; } | 87 DocumentOrderedList& styleSheetCandidateNodes() { return m_styleSheetCandida teNodes; } |
| 88 DocumentOrderedList* scopingNodesForStyleScoped() { return m_scopingNodesFor StyleScoped.scopingNodes(); } | 88 DocumentOrderedList* scopingNodesForStyleScoped() { return m_scopingNodesFor StyleScoped.scopingNodes(); } |
| 89 ListHashSet<Node*, 4>* scopingNodesRemoved() { return m_scopingNodesForStyle Scoped.scopingNodesRemoved(); } | 89 ListHashSet<Node*, 4>* scopingNodesRemoved() { return m_scopingNodesForStyle Scoped.scopingNodesRemoved(); } |
| 90 | 90 |
| 91 void clearMediaQueryRuleSetStyleSheets(); | 91 void clearMediaQueryRuleSetStyleSheets(); |
| 92 | 92 |
| 93 protected: | 93 protected: |
| 94 explicit StyleSheetCollection(TreeScope&); | 94 explicit StyleSheetCollection(TreeScope&); |
| 95 | 95 |
| 96 Document* document() { return m_treeScope.documentScope(); } | 96 Document* document() { return &m_treeScope.documentScope(); } |
|
esprehn
2014/01/07 01:06:09
FIXME: should return a reference.
adamk
2014/01/07 01:11:12
Done.
| |
| 97 | 97 |
| 98 enum StyleResolverUpdateType { | 98 enum StyleResolverUpdateType { |
| 99 Reconstruct, | 99 Reconstruct, |
| 100 Reset, | 100 Reset, |
| 101 Additive, | 101 Additive, |
| 102 ResetStyleResolverAndFontSelector | 102 ResetStyleResolverAndFontSelector |
| 103 }; | 103 }; |
| 104 | 104 |
| 105 struct StyleSheetChange { | 105 struct StyleSheetChange { |
| 106 StyleResolverUpdateType styleResolverUpdateType; | 106 StyleResolverUpdateType styleResolverUpdateType; |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 125 bool m_usesRemUnits; | 125 bool m_usesRemUnits; |
| 126 | 126 |
| 127 DocumentOrderedList m_styleSheetCandidateNodes; | 127 DocumentOrderedList m_styleSheetCandidateNodes; |
| 128 StyleSheetScopingNodeList m_scopingNodesForStyleScoped; | 128 StyleSheetScopingNodeList m_scopingNodesForStyleScoped; |
| 129 }; | 129 }; |
| 130 | 130 |
| 131 } | 131 } |
| 132 | 132 |
| 133 #endif | 133 #endif |
| 134 | 134 |
| OLD | NEW |