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

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

Issue 2010823002: Remove assorted unnecessary includes in core/paint/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Missing includes. Created 4 years, 7 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
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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #include "core/dom/shadow/ShadowRoot.h" 50 #include "core/dom/shadow/ShadowRoot.h"
51 #include "core/frame/DeprecatedScheduleStyleRecalcDuringLayout.h" 51 #include "core/frame/DeprecatedScheduleStyleRecalcDuringLayout.h"
52 #include "core/frame/FrameView.h" 52 #include "core/frame/FrameView.h"
53 #include "core/frame/LocalFrame.h" 53 #include "core/frame/LocalFrame.h"
54 #include "core/frame/Settings.h" 54 #include "core/frame/Settings.h"
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"
61 #include "core/layout/LayoutInline.h" 60 #include "core/layout/LayoutInline.h"
62 #include "core/layout/LayoutPart.h" 61 #include "core/layout/LayoutPart.h"
63 #include "core/layout/LayoutReplica.h" 62 #include "core/layout/LayoutReplica.h"
64 #include "core/layout/LayoutScrollbar.h"
65 #include "core/layout/LayoutTreeAsText.h" 63 #include "core/layout/LayoutTreeAsText.h"
66 #include "core/layout/LayoutView.h" 64 #include "core/layout/LayoutView.h"
67 #include "core/layout/compositing/CompositedLayerMapping.h" 65 #include "core/layout/compositing/CompositedLayerMapping.h"
68 #include "core/layout/compositing/PaintLayerCompositor.h" 66 #include "core/layout/compositing/PaintLayerCompositor.h"
69 #include "core/layout/svg/LayoutSVGResourceClipper.h" 67 #include "core/layout/svg/LayoutSVGResourceClipper.h"
70 #include "core/layout/svg/LayoutSVGRoot.h" 68 #include "core/layout/svg/LayoutSVGRoot.h"
71 #include "core/layout/svg/ReferenceFilterBuilder.h" 69 #include "core/layout/svg/ReferenceFilterBuilder.h"
72 #include "core/page/Page.h" 70 #include "core/page/Page.h"
73 #include "core/page/scrolling/ScrollingCoordinator.h" 71 #include "core/page/scrolling/ScrollingCoordinator.h"
74 #include "core/paint/BoxReflectionUtils.h" 72 #include "core/paint/BoxReflectionUtils.h"
(...skipping 2837 matching lines...) Expand 10 before | Expand all | Expand 10 after
2912 2910
2913 void showLayerTree(const blink::LayoutObject* layoutObject) 2911 void showLayerTree(const blink::LayoutObject* layoutObject)
2914 { 2912 {
2915 if (!layoutObject) { 2913 if (!layoutObject) {
2916 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n"); 2914 fprintf(stderr, "Cannot showLayerTree. Root is (nil)\n");
2917 return; 2915 return;
2918 } 2916 }
2919 showLayerTree(layoutObject->enclosingLayer()); 2917 showLayerTree(layoutObject->enclosingLayer());
2920 } 2918 }
2921 #endif 2919 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698