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

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

Issue 381473002: Use reference for FillLayer if possible (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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/rendering/RenderTheme.cpp ('k') | Source/core/rendering/style/CachedUAStyle.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 * 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 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 return true; 199 return true;
200 200
201 if (height() != viewHeight()) { 201 if (height() != viewHeight()) {
202 if (RenderObject* backgroundRenderer = this->backgroundRenderer()) { 202 if (RenderObject* backgroundRenderer = this->backgroundRenderer()) {
203 // When background-attachment is 'fixed', we treat the viewport (ins tead of the 'root' 203 // When background-attachment is 'fixed', we treat the viewport (ins tead of the 'root'
204 // i.e. html or body) as the background positioning area, and we sho uld full repaint 204 // i.e. html or body) as the background positioning area, and we sho uld full repaint
205 // viewport resize if the background image is not composited and nee ds full repaint on 205 // viewport resize if the background image is not composited and nee ds full repaint on
206 // background positioning area resize. 206 // background positioning area resize.
207 if (!m_compositor || !m_compositor->needsFixedRootBackgroundLayer(la yer())) { 207 if (!m_compositor || !m_compositor->needsFixedRootBackgroundLayer(la yer())) {
208 if (backgroundRenderer->style()->hasFixedBackgroundImage() 208 if (backgroundRenderer->style()->hasFixedBackgroundImage()
209 && mustInvalidateFillLayersPaintOnHeightChange(*backgroundRe nderer->style()->backgroundLayers())) 209 && mustInvalidateFillLayersPaintOnHeightChange(backgroundRen derer->style()->backgroundLayers()))
210 return true; 210 return true;
211 } 211 }
212 } 212 }
213 } 213 }
214 214
215 return false; 215 return false;
216 } 216 }
217 217
218 void RenderView::layout() 218 void RenderView::layout()
219 { 219 {
(...skipping 773 matching lines...) Expand 10 before | Expand all | Expand 10 after
993 return viewWidth(IncludeScrollbars) / scale; 993 return viewWidth(IncludeScrollbars) / scale;
994 } 994 }
995 995
996 double RenderView::layoutViewportHeight() const 996 double RenderView::layoutViewportHeight() const
997 { 997 {
998 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1; 998 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1;
999 return viewHeight(IncludeScrollbars) / scale; 999 return viewHeight(IncludeScrollbars) / scale;
1000 } 1000 }
1001 1001
1002 } // namespace WebCore 1002 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderTheme.cpp ('k') | Source/core/rendering/style/CachedUAStyle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698