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

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

Issue 351003002: Remove the ChromeClient.h include from RenderLayerCompositor.h (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fewer includes 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) 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 17 matching lines...) Expand all
28 #include "core/html/HTMLFrameOwnerElement.h" 28 #include "core/html/HTMLFrameOwnerElement.h"
29 #include "core/html/HTMLIFrameElement.h" 29 #include "core/html/HTMLIFrameElement.h"
30 #include "core/page/Page.h" 30 #include "core/page/Page.h"
31 #include "core/rendering/ColumnInfo.h" 31 #include "core/rendering/ColumnInfo.h"
32 #include "core/rendering/FlowThreadController.h" 32 #include "core/rendering/FlowThreadController.h"
33 #include "core/rendering/GraphicsContextAnnotator.h" 33 #include "core/rendering/GraphicsContextAnnotator.h"
34 #include "core/rendering/HitTestResult.h" 34 #include "core/rendering/HitTestResult.h"
35 #include "core/rendering/RenderFlowThread.h" 35 #include "core/rendering/RenderFlowThread.h"
36 #include "core/rendering/RenderGeometryMap.h" 36 #include "core/rendering/RenderGeometryMap.h"
37 #include "core/rendering/RenderLayer.h" 37 #include "core/rendering/RenderLayer.h"
38 #include "core/rendering/RenderPart.h"
38 #include "core/rendering/RenderSelectionInfo.h" 39 #include "core/rendering/RenderSelectionInfo.h"
39 #include "core/rendering/compositing/CompositedLayerMapping.h" 40 #include "core/rendering/compositing/CompositedLayerMapping.h"
40 #include "core/rendering/compositing/RenderLayerCompositor.h" 41 #include "core/rendering/compositing/RenderLayerCompositor.h"
41 #include "core/svg/SVGDocumentExtensions.h" 42 #include "core/svg/SVGDocumentExtensions.h"
42 #include "platform/RuntimeEnabledFeatures.h" 43 #include "platform/RuntimeEnabledFeatures.h"
43 #include "platform/TraceEvent.h" 44 #include "platform/TraceEvent.h"
44 #include "platform/geometry/FloatQuad.h" 45 #include "platform/geometry/FloatQuad.h"
45 #include "platform/geometry/TransformState.h" 46 #include "platform/geometry/TransformState.h"
46 #include "platform/graphics/GraphicsContext.h" 47 #include "platform/graphics/GraphicsContext.h"
47 48
(...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after
991 return viewWidth(IncludeScrollbars) / scale; 992 return viewWidth(IncludeScrollbars) / scale;
992 } 993 }
993 994
994 double RenderView::layoutViewportHeight() const 995 double RenderView::layoutViewportHeight() const
995 { 996 {
996 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1; 997 float scale = m_frameView ? m_frameView->frame().pageZoomFactor() : 1;
997 return viewHeight(IncludeScrollbars) / scale; 998 return viewHeight(IncludeScrollbars) / scale;
998 } 999 }
999 1000
1000 } // namespace WebCore 1001 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerScrollableArea.cpp ('k') | Source/core/rendering/compositing/CompositedLayerMapping.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698