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

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

Issue 663923002: Rename hasTransform() to hasTransformRelatedProperty, since the meaning is the latter. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Created 6 years, 2 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) 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 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 if (!isHorizontalWritingMode()) 734 if (!isHorizontalWritingMode())
735 backgroundRect = backgroundRect.transposedRect(); 735 backgroundRect = backgroundRect.transposedRect();
736 backgroundRenderer->flipForWritingMode(backgroundRect); 736 backgroundRenderer->flipForWritingMode(backgroundRect);
737 737
738 return backgroundRect; 738 return backgroundRect;
739 } 739 }
740 740
741 IntRect RenderView::documentRect() const 741 IntRect RenderView::documentRect() const
742 { 742 {
743 FloatRect overflowRect(unscaledDocumentRect()); 743 FloatRect overflowRect(unscaledDocumentRect());
744 if (hasTransform()) 744 if (hasTransformRelatedProperty())
745 overflowRect = layer()->currentTransform().mapRect(overflowRect); 745 overflowRect = layer()->currentTransform().mapRect(overflowRect);
746 return IntRect(overflowRect); 746 return IntRect(overflowRect);
747 } 747 }
748 748
749 int RenderView::viewHeight(IncludeScrollbarsInRect scrollbarInclusion) const 749 int RenderView::viewHeight(IncludeScrollbarsInRect scrollbarInclusion) const
750 { 750 {
751 int height = 0; 751 int height = 0;
752 if (!shouldUsePrintingLayout() && m_frameView) 752 if (!shouldUsePrintingLayout() && m_frameView)
753 height = m_frameView->layoutSize(scrollbarInclusion).height(); 753 height = m_frameView->layoutSize(scrollbarInclusion).height();
754 754
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
872 return viewWidth(IncludeScrollbars) / scale; 872 return viewWidth(IncludeScrollbars) / scale;
873 } 873 }
874 874
875 double RenderView::layoutViewportHeight() const 875 double RenderView::layoutViewportHeight() const
876 { 876 {
877 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1; 877 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1;
878 return viewHeight(IncludeScrollbars) / scale; 878 return viewHeight(IncludeScrollbars) / scale;
879 } 879 }
880 880
881 } // namespace blink 881 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderTableRow.h ('k') | Source/core/rendering/compositing/CompositedLayerMapping.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698