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

Side by Side Diff: Source/core/rendering/RenderLayer.cpp

Issue 270383002: Remove will-change: contents GPU rasterization hint (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 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) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
5 * 5 *
6 * Other contributors: 6 * Other contributors:
7 * Robert O'Callahan <roc+@cs.cmu.edu> 7 * Robert O'Callahan <roc+@cs.cmu.edu>
8 * David Baron <dbaron@fas.harvard.edu> 8 * David Baron <dbaron@fas.harvard.edu>
9 * Christian Biesinger <cbiesinger@web.de> 9 * Christian Biesinger <cbiesinger@web.de>
10 * Randall Jesup <rjesup@wgate.com> 10 * Randall Jesup <rjesup@wgate.com>
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 , m_has3DTransformedDescendant(false) 125 , m_has3DTransformedDescendant(false)
126 , m_containsDirtyOverlayScrollbars(false) 126 , m_containsDirtyOverlayScrollbars(false)
127 , m_canSkipRepaintRectsUpdateOnScroll(renderer->isTableCell()) 127 , m_canSkipRepaintRectsUpdateOnScroll(renderer->isTableCell())
128 , m_hasFilterInfo(false) 128 , m_hasFilterInfo(false)
129 , m_needsToUpdateAncestorDependentProperties(true) 129 , m_needsToUpdateAncestorDependentProperties(true)
130 , m_childNeedsToUpdateAncestorDependantProperties(true) 130 , m_childNeedsToUpdateAncestorDependantProperties(true)
131 , m_hasCompositingDescendant(false) 131 , m_hasCompositingDescendant(false)
132 , m_hasNonCompositedChild(false) 132 , m_hasNonCompositedChild(false)
133 , m_shouldIsolateCompositedDescendants(false) 133 , m_shouldIsolateCompositedDescendants(false)
134 , m_lostGroupedMapping(false) 134 , m_lostGroupedMapping(false)
135 , m_suppressingCompositedLayerCreation(false)
136 , m_viewportConstrainedNotCompositedReason(NoNotCompositedReason) 135 , m_viewportConstrainedNotCompositedReason(NoNotCompositedReason)
137 , m_renderer(renderer) 136 , m_renderer(renderer)
138 , m_parent(0) 137 , m_parent(0)
139 , m_previous(0) 138 , m_previous(0)
140 , m_next(0) 139 , m_next(0)
141 , m_first(0) 140 , m_first(0)
142 , m_last(0) 141 , m_last(0)
143 , m_staticInlinePosition(0) 142 , m_staticInlinePosition(0)
144 , m_staticBlockPosition(0) 143 , m_staticBlockPosition(0)
145 , m_enclosingPaginationLayer(0) 144 , m_enclosingPaginationLayer(0)
(...skipping 3870 matching lines...) Expand 10 before | Expand all | Expand 10 after
4016 } 4015 }
4017 } 4016 }
4018 4017
4019 void showLayerTree(const WebCore::RenderObject* renderer) 4018 void showLayerTree(const WebCore::RenderObject* renderer)
4020 { 4019 {
4021 if (!renderer) 4020 if (!renderer)
4022 return; 4021 return;
4023 showLayerTree(renderer->enclosingLayer()); 4022 showLayerTree(renderer->enclosingLayer());
4024 } 4023 }
4025 #endif 4024 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698