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

Side by Side Diff: third_party/WebKit/Source/core/paint/PaintLayer.cpp

Issue 2007133003: Remove unnecessary includes of LayoutBlock-derived headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutView.cpp ('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) 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 #include "core/html/HTMLFrameElement.h" 55 #include "core/html/HTMLFrameElement.h"
56 #include "core/layout/HitTestRequest.h" 56 #include "core/layout/HitTestRequest.h"
57 #include "core/layout/HitTestResult.h" 57 #include "core/layout/HitTestResult.h"
58 #include "core/layout/HitTestingTransformState.h" 58 #include "core/layout/HitTestingTransformState.h"
59 #include "core/layout/LayoutFlowThread.h" 59 #include "core/layout/LayoutFlowThread.h"
60 #include "core/layout/LayoutGeometryMap.h" 60 #include "core/layout/LayoutGeometryMap.h"
61 #include "core/layout/LayoutInline.h" 61 #include "core/layout/LayoutInline.h"
62 #include "core/layout/LayoutPart.h" 62 #include "core/layout/LayoutPart.h"
63 #include "core/layout/LayoutReplica.h" 63 #include "core/layout/LayoutReplica.h"
64 #include "core/layout/LayoutScrollbar.h" 64 #include "core/layout/LayoutScrollbar.h"
65 #include "core/layout/LayoutScrollbarPart.h"
66 #include "core/layout/LayoutTreeAsText.h" 65 #include "core/layout/LayoutTreeAsText.h"
67 #include "core/layout/LayoutView.h" 66 #include "core/layout/LayoutView.h"
68 #include "core/layout/compositing/CompositedLayerMapping.h" 67 #include "core/layout/compositing/CompositedLayerMapping.h"
69 #include "core/layout/compositing/PaintLayerCompositor.h" 68 #include "core/layout/compositing/PaintLayerCompositor.h"
70 #include "core/layout/svg/LayoutSVGResourceClipper.h" 69 #include "core/layout/svg/LayoutSVGResourceClipper.h"
71 #include "core/layout/svg/LayoutSVGRoot.h" 70 #include "core/layout/svg/LayoutSVGRoot.h"
72 #include "core/layout/svg/ReferenceFilterBuilder.h" 71 #include "core/layout/svg/ReferenceFilterBuilder.h"
73 #include "core/page/Page.h" 72 #include "core/page/Page.h"
74 #include "core/page/scrolling/ScrollingCoordinator.h" 73 #include "core/page/scrolling/ScrollingCoordinator.h"
75 #include "core/paint/BoxReflectionUtils.h" 74 #include "core/paint/BoxReflectionUtils.h"
(...skipping 2837 matching lines...) Expand 10 before | Expand all | Expand 10 after
2913 2912
2914 void showLayerTree(const blink::LayoutObject* layoutObject) 2913 void showLayerTree(const blink::LayoutObject* layoutObject)
2915 { 2914 {
2916 if (!layoutObject) { 2915 if (!layoutObject) {
2917 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); 2916 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n");
2918 return; 2917 return;
2919 } 2918 }
2920 showLayerTree(layoutObject->enclosingLayer()); 2919 showLayerTree(layoutObject->enclosingLayer());
2921 } 2920 }
2922 #endif 2921 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutView.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698