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

Side by Side Diff: Source/core/dom/StyleSheetCollection.h

Issue 112953007: Make TreeScope::documentScope() return a reference and ensure m_documentScope is never NULL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698