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

Side by Side Diff: sky/engine/core/rendering/RenderView.cpp

Issue 823123003: Delete PaintInvalidationState. It's unused. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: proper diff Created 5 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
« no previous file with comments | « sky/engine/core/rendering/RenderView.h ('k') | no next file » | 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 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed. 3 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserv ed.
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 LayoutState rootLayoutState(*this); 144 LayoutState rootLayoutState(*this);
145 145
146 layoutContent(); 146 layoutContent();
147 147
148 #if ENABLE(ASSERT) 148 #if ENABLE(ASSERT)
149 checkLayoutState(); 149 checkLayoutState();
150 #endif 150 #endif
151 clearNeedsLayout(); 151 clearNeedsLayout();
152 } 152 }
153 153
154 void RenderView::mapLocalToContainer(const RenderLayerModelObject* paintInvalida tionContainer, TransformState& transformState, MapCoordinatesFlags mode, const P aintInvalidationState* paintInvalidationState) const 154 void RenderView::mapLocalToContainer(const RenderLayerModelObject* paintInvalida tionContainer, TransformState& transformState, MapCoordinatesFlags mode) const
155 { 155 {
156 if (!paintInvalidationContainer && mode & UseTransforms && shouldUseTransfor mFromContainer(0)) { 156 if (!paintInvalidationContainer && mode & UseTransforms && shouldUseTransfor mFromContainer(0)) {
157 TransformationMatrix t; 157 TransformationMatrix t;
158 getTransformFromContainer(0, LayoutSize(), t); 158 getTransformFromContainer(0, LayoutSize(), t);
159 transformState.applyTransform(t); 159 transformState.applyTransform(t);
160 } 160 }
161 } 161 }
162 162
163 const RenderObject* RenderView::pushMappingToContainer(const RenderLayerModelObj ect* ancestorToStopAt, RenderGeometryMap& geometryMap) const 163 const RenderObject* RenderView::pushMappingToContainer(const RenderLayerModelObj ect* ancestorToStopAt, RenderGeometryMap& geometryMap) const
164 { 164 {
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
481 m_iframes.remove(iframe); 481 m_iframes.remove(iframe);
482 } 482 }
483 483
484 void RenderView::updateIFramesAfterLayout() 484 void RenderView::updateIFramesAfterLayout()
485 { 485 {
486 for (auto& iframe: m_iframes) 486 for (auto& iframe: m_iframes)
487 iframe->updateWidgetBounds(); 487 iframe->updateWidgetBounds();
488 } 488 }
489 489
490 } // namespace blink 490 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/rendering/RenderView.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698