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

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

Issue 334223005: Qualify the generated includes in core (part 6) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « Source/core/rendering/RenderImage.cpp ('k') | Source/core/rendering/RenderListBox.cpp » ('j') | 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 26 matching lines...) Expand all
37 * version of this file under the LGPL, indicate your decision by 37 * version of this file under the LGPL, indicate your decision by
38 * deletingthe provisions above and replace them with the notice and 38 * deletingthe provisions above and replace them with the notice and
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 "core/CSSPropertyNames.h"
48 #include "HTMLNames.h" 48 #include "core/HTMLNames.h"
49 #include "RuntimeEnabledFeatures.h"
50 #include "core/animation/ActiveAnimations.h" 49 #include "core/animation/ActiveAnimations.h"
51 #include "core/css/PseudoStyleRequest.h" 50 #include "core/css/PseudoStyleRequest.h"
52 #include "core/dom/Document.h" 51 #include "core/dom/Document.h"
53 #include "core/dom/shadow/ShadowRoot.h" 52 #include "core/dom/shadow/ShadowRoot.h"
54 #include "core/frame/DeprecatedScheduleStyleRecalcDuringLayout.h" 53 #include "core/frame/DeprecatedScheduleStyleRecalcDuringLayout.h"
55 #include "core/frame/FrameView.h" 54 #include "core/frame/FrameView.h"
56 #include "core/frame/LocalFrame.h" 55 #include "core/frame/LocalFrame.h"
57 #include "core/frame/Settings.h" 56 #include "core/frame/Settings.h"
58 #include "core/html/HTMLFrameElement.h" 57 #include "core/html/HTMLFrameElement.h"
59 #include "core/page/Page.h" 58 #include "core/page/Page.h"
(...skipping 10 matching lines...) Expand all
70 #include "core/rendering/RenderScrollbar.h" 69 #include "core/rendering/RenderScrollbar.h"
71 #include "core/rendering/RenderScrollbarPart.h" 70 #include "core/rendering/RenderScrollbarPart.h"
72 #include "core/rendering/RenderTreeAsText.h" 71 #include "core/rendering/RenderTreeAsText.h"
73 #include "core/rendering/RenderView.h" 72 #include "core/rendering/RenderView.h"
74 #include "core/rendering/compositing/CompositedLayerMapping.h" 73 #include "core/rendering/compositing/CompositedLayerMapping.h"
75 #include "core/rendering/compositing/RenderLayerCompositor.h" 74 #include "core/rendering/compositing/RenderLayerCompositor.h"
76 #include "core/rendering/svg/ReferenceFilterBuilder.h" 75 #include "core/rendering/svg/ReferenceFilterBuilder.h"
77 #include "core/rendering/svg/RenderSVGResourceClipper.h" 76 #include "core/rendering/svg/RenderSVGResourceClipper.h"
78 #include "platform/LengthFunctions.h" 77 #include "platform/LengthFunctions.h"
79 #include "platform/Partitions.h" 78 #include "platform/Partitions.h"
79 #include "platform/RuntimeEnabledFeatures.h"
80 #include "platform/TraceEvent.h" 80 #include "platform/TraceEvent.h"
81 #include "platform/geometry/FloatPoint3D.h" 81 #include "platform/geometry/FloatPoint3D.h"
82 #include "platform/geometry/FloatRect.h" 82 #include "platform/geometry/FloatRect.h"
83 #include "platform/geometry/TransformState.h" 83 #include "platform/geometry/TransformState.h"
84 #include "platform/graphics/GraphicsContextStateSaver.h" 84 #include "platform/graphics/GraphicsContextStateSaver.h"
85 #include "platform/graphics/filters/ReferenceFilter.h" 85 #include "platform/graphics/filters/ReferenceFilter.h"
86 #include "platform/graphics/filters/SourceGraphic.h" 86 #include "platform/graphics/filters/SourceGraphic.h"
87 #include "platform/transforms/ScaleTransformOperation.h" 87 #include "platform/transforms/ScaleTransformOperation.h"
88 #include "platform/transforms/TransformationMatrix.h" 88 #include "platform/transforms/TransformationMatrix.h"
89 #include "platform/transforms/TranslateTransformOperation.h" 89 #include "platform/transforms/TranslateTransformOperation.h"
(...skipping 3745 matching lines...) Expand 10 before | Expand all | Expand 10 after
3835 } 3835 }
3836 } 3836 }
3837 3837
3838 void showLayerTree(const WebCore::RenderObject* renderer) 3838 void showLayerTree(const WebCore::RenderObject* renderer)
3839 { 3839 {
3840 if (!renderer) 3840 if (!renderer)
3841 return; 3841 return;
3842 showLayerTree(renderer->enclosingLayer()); 3842 showLayerTree(renderer->enclosingLayer());
3843 } 3843 }
3844 #endif 3844 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderImage.cpp ('k') | Source/core/rendering/RenderListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698