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

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: Added FIXMEs 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
« no previous file with comments | « Source/core/dom/NodeRareData.h ('k') | Source/core/dom/TreeScope.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // FIXME: Should return a reference.
97 Document* document() { return &m_treeScope.documentScope(); }
97 98
98 enum StyleResolverUpdateType { 99 enum StyleResolverUpdateType {
99 Reconstruct, 100 Reconstruct,
100 Reset, 101 Reset,
101 Additive, 102 Additive,
102 ResetStyleResolverAndFontSelector 103 ResetStyleResolverAndFontSelector
103 }; 104 };
104 105
105 struct StyleSheetChange { 106 struct StyleSheetChange {
106 StyleResolverUpdateType styleResolverUpdateType; 107 StyleResolverUpdateType styleResolverUpdateType;
(...skipping 18 matching lines...) Expand all
125 bool m_usesRemUnits; 126 bool m_usesRemUnits;
126 127
127 DocumentOrderedList m_styleSheetCandidateNodes; 128 DocumentOrderedList m_styleSheetCandidateNodes;
128 StyleSheetScopingNodeList m_scopingNodesForStyleScoped; 129 StyleSheetScopingNodeList m_scopingNodesForStyleScoped;
129 }; 130 };
130 131
131 } 132 }
132 133
133 #endif 134 #endif
134 135
OLDNEW
« no previous file with comments | « Source/core/dom/NodeRareData.h ('k') | Source/core/dom/TreeScope.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698