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

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

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 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 28 matching lines...) Expand all
39 * other provisions required by the MPL or the GPL, as the case may be. 39 * other provisions required by the MPL or the GPL, as the case may be.
40 * If you do not delete the provisions above, a recipient may use your 40 * If you do not delete the provisions above, a recipient may use your
41 * version of this file under any of the LGPL, the MPL or the GPL. 41 * version of this file under any of the LGPL, the MPL or the GPL.
42 */ 42 */
43 43
44 #include "config.h" 44 #include "config.h"
45 #include "core/rendering/RenderLayer.h" 45 #include "core/rendering/RenderLayer.h"
46 46
47 #include "CSSPropertyNames.h" 47 #include "CSSPropertyNames.h"
48 #include "HTMLNames.h" 48 #include "HTMLNames.h"
49 #include "core/css/StylePropertySet.h"
50 #include "core/css/resolver/StyleResolver.h" 49 #include "core/css/resolver/StyleResolver.h"
51 #include "core/dom/Document.h" 50 #include "core/dom/Document.h"
52 #include "core/dom/DocumentEventQueue.h" 51 #include "core/dom/DocumentEventQueue.h"
53 #include "core/dom/OverflowEvent.h"
54 #include "core/dom/WebCoreMemoryInstrumentation.h" 52 #include "core/dom/WebCoreMemoryInstrumentation.h"
55 #include "core/dom/shadow/ShadowRoot.h" 53 #include "core/dom/shadow/ShadowRoot.h"
56 #include "core/editing/FrameSelection.h" 54 #include "core/editing/FrameSelection.h"
57 #include "core/html/HTMLFrameElement.h" 55 #include "core/html/HTMLFrameElement.h"
58 #include "core/html/HTMLFrameOwnerElement.h" 56 #include "core/html/HTMLFrameOwnerElement.h"
59 #include "core/loader/FrameLoader.h"
60 #include "core/loader/FrameLoaderClient.h"
61 #include "core/page/Chrome.h"
62 #include "core/page/EventHandler.h" 57 #include "core/page/EventHandler.h"
63 #include "core/page/FocusController.h" 58 #include "core/page/FocusController.h"
64 #include "core/page/Frame.h" 59 #include "core/page/Frame.h"
65 #include "core/page/FrameTree.h"
66 #include "core/page/FrameView.h" 60 #include "core/page/FrameView.h"
67 #include "core/page/Page.h" 61 #include "core/page/Page.h"
68 #include "core/page/Settings.h" 62 #include "core/page/Settings.h"
69 #include "core/page/UseCounter.h" 63 #include "core/page/UseCounter.h"
70 #include "core/page/animation/AnimationController.h" 64 #include "core/page/animation/AnimationController.h"
71 #include "core/page/scrolling/ScrollingCoordinator.h" 65 #include "core/page/scrolling/ScrollingCoordinator.h"
72 #include "core/platform/FloatConversion.h"
73 #include "core/platform/HistogramSupport.h" 66 #include "core/platform/HistogramSupport.h"
74 #include "core/platform/PlatformGestureEvent.h" 67 #include "core/platform/PlatformGestureEvent.h"
75 #include "core/platform/PlatformMouseEvent.h" 68 #include "core/platform/PlatformMouseEvent.h"
76 #include "core/platform/ScrollAnimator.h" 69 #include "core/platform/ScrollAnimator.h"
77 #include "core/platform/Scrollbar.h" 70 #include "core/platform/Scrollbar.h"
78 #include "core/platform/ScrollbarTheme.h" 71 #include "core/platform/ScrollbarTheme.h"
79 #include "core/platform/graphics/FloatPoint3D.h" 72 #include "core/platform/graphics/FloatPoint3D.h"
80 #include "core/platform/graphics/FloatRect.h" 73 #include "core/platform/graphics/FloatRect.h"
81 #include "core/platform/graphics/Gradient.h"
82 #include "core/platform/graphics/GraphicsContextStateSaver.h" 74 #include "core/platform/graphics/GraphicsContextStateSaver.h"
83 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h" 75 #include "core/platform/graphics/filters/custom/CustomFilterGlobalContext.h"
84 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" 76 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h"
85 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h" 77 #include "core/platform/graphics/filters/custom/CustomFilterValidatedProgram.h"
86 #include "core/platform/graphics/filters/custom/ValidatedCustomFilterOperation.h " 78 #include "core/platform/graphics/filters/custom/ValidatedCustomFilterOperation.h "
87 #include "core/platform/graphics/filters/FEColorMatrix.h"
88 #include "core/platform/graphics/filters/FEMerge.h"
89 #include "core/platform/graphics/filters/SourceGraphic.h"
90 #include "core/platform/graphics/transforms/ScaleTransformOperation.h" 79 #include "core/platform/graphics/transforms/ScaleTransformOperation.h"
91 #include "core/platform/graphics/transforms/TransformationMatrix.h" 80 #include "core/platform/graphics/transforms/TransformationMatrix.h"
92 #include "core/platform/graphics/transforms/TranslateTransformOperation.h" 81 #include "core/platform/graphics/transforms/TranslateTransformOperation.h"
93 #include "core/platform/text/TextStream.h"
94 #include "core/rendering/ColumnInfo.h" 82 #include "core/rendering/ColumnInfo.h"
95 #include "core/rendering/FilterEffectRenderer.h" 83 #include "core/rendering/FilterEffectRenderer.h"
96 #include "core/rendering/HitTestRequest.h" 84 #include "core/rendering/HitTestRequest.h"
97 #include "core/rendering/HitTestResult.h" 85 #include "core/rendering/HitTestResult.h"
98 #include "core/rendering/HitTestingTransformState.h" 86 #include "core/rendering/HitTestingTransformState.h"
99 #include "core/rendering/OverlapTestRequestClient.h" 87 #include "core/rendering/OverlapTestRequestClient.h"
100 #include "core/rendering/RenderArena.h" 88 #include "core/rendering/RenderArena.h"
101 #include "core/rendering/RenderFlowThread.h" 89 #include "core/rendering/RenderFlowThread.h"
102 #include "core/rendering/RenderGeometryMap.h" 90 #include "core/rendering/RenderGeometryMap.h"
103 #include "core/rendering/RenderInline.h" 91 #include "core/rendering/RenderInline.h"
104 #include "core/rendering/RenderLayerBacking.h" 92 #include "core/rendering/RenderLayerBacking.h"
105 #include "core/rendering/RenderLayerCompositor.h" 93 #include "core/rendering/RenderLayerCompositor.h"
106 #include "core/rendering/RenderLazyBlock.h"
107 #include "core/rendering/RenderMarquee.h" 94 #include "core/rendering/RenderMarquee.h"
108 #include "core/rendering/RenderReplica.h" 95 #include "core/rendering/RenderReplica.h"
109 #include "core/rendering/RenderScrollbar.h" 96 #include "core/rendering/RenderScrollbar.h"
110 #include "core/rendering/RenderScrollbarPart.h" 97 #include "core/rendering/RenderScrollbarPart.h"
111 #include "core/rendering/RenderTheme.h"
112 #include "core/rendering/RenderTreeAsText.h"
113 #include "core/rendering/RenderView.h" 98 #include "core/rendering/RenderView.h"
114 #include "core/rendering/svg/RenderSVGResourceClipper.h" 99 #include "core/rendering/svg/RenderSVGResourceClipper.h"
115 #include <wtf/MemoryInstrumentationVector.h> 100 #include <wtf/MemoryInstrumentationVector.h>
116 #include <wtf/StdLibExtras.h> 101 #include <wtf/StdLibExtras.h>
117 #include <wtf/text/CString.h> 102 #include <wtf/text/CString.h>
118 #include <wtf/UnusedParam.h> 103 #include <wtf/UnusedParam.h>
119 104
120 #if ENABLE(SVG) 105 #if ENABLE(SVG)
121 #include "SVGNames.h" 106 #include "SVGNames.h"
122 #endif 107 #endif
(...skipping 6345 matching lines...) Expand 10 before | Expand all | Expand 10 after
6468 } 6453 }
6469 } 6454 }
6470 6455
6471 void showLayerTree(const WebCore::RenderObject* renderer) 6456 void showLayerTree(const WebCore::RenderObject* renderer)
6472 { 6457 {
6473 if (!renderer) 6458 if (!renderer)
6474 return; 6459 return;
6475 showLayerTree(renderer->enclosingLayer()); 6460 showLayerTree(renderer->enclosingLayer());
6476 } 6461 }
6477 #endif 6462 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderInputSpeech.cpp ('k') | Source/core/rendering/RenderLayerModelObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698