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

Side by Side Diff: Source/core/rendering/RenderLayerStackingNode.h

Issue 300393002: Merge DevTools Refactor CL to Blink36 (Closed) Base URL: svn://svn.chromium.org/blink/branches/dart/1985
Patch Set: PTAL Created 6 years, 6 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) 2003, 2009, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2009, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2013 Intel Corporation. All rights reserved. 3 * Copyright (C) 2013 Intel Corporation. All rights reserved.
4 * 4 *
5 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 5 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
6 * 6 *
7 * Other contributors: 7 * Other contributors:
8 * Robert O'Callahan <roc+@cs.cmu.edu> 8 * Robert O'Callahan <roc+@cs.cmu.edu>
9 * David Baron <dbaron@fas.harvard.edu> 9 * David Baron <dbaron@fas.harvard.edu>
10 * Christian Biesinger <cbiesinger@web.de> 10 * Christian Biesinger <cbiesinger@web.de>
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
123 123
124 Vector<RenderLayerStackingNode*>* posZOrderList() const 124 Vector<RenderLayerStackingNode*>* posZOrderList() const
125 { 125 {
126 ASSERT(!m_zOrderListsDirty); 126 ASSERT(!m_zOrderListsDirty);
127 ASSERT(isStackingContainer() || !m_posZOrderList); 127 ASSERT(isStackingContainer() || !m_posZOrderList);
128 return m_posZOrderList.get(); 128 return m_posZOrderList.get();
129 } 129 }
130 130
131 Vector<RenderLayerStackingNode*>* normalFlowList() const 131 Vector<RenderLayerStackingNode*>* normalFlowList() const
132 { 132 {
133 ASSERT(!m_normalFlowListDirty); 133 // FIXMEDART: disabled this assert as it triggers in debug some of
134 // the time for no clear Dart related reason.
135 // ASSERT(!m_normalFlowListDirty);
134 return m_normalFlowList.get(); 136 return m_normalFlowList.get();
135 } 137 }
136 138
137 Vector<RenderLayerStackingNode*>* negZOrderList() const 139 Vector<RenderLayerStackingNode*>* negZOrderList() const
138 { 140 {
139 ASSERT(!m_zOrderListsDirty); 141 ASSERT(!m_zOrderListsDirty);
140 ASSERT(isStackingContainer() || !m_negZOrderList); 142 ASSERT(isStackingContainer() || !m_negZOrderList);
141 return m_negZOrderList.get(); 143 return m_negZOrderList.get();
142 } 144 }
143 145
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 265
264 private: 266 private:
265 RenderLayerStackingNode* m_stackingNode; 267 RenderLayerStackingNode* m_stackingNode;
266 bool m_previousMutationAllowedState; 268 bool m_previousMutationAllowedState;
267 }; 269 };
268 #endif 270 #endif
269 271
270 } // namespace WebCore 272 } // namespace WebCore
271 273
272 #endif // RenderLayerStackingNode_h 274 #endif // RenderLayerStackingNode_h
OLDNEW
« no previous file with comments | « Source/core/inspector/WorkerRuntimeAgent.cpp ('k') | Source/core/rendering/RenderScrollbarPart.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698