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

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

Issue 14487005: Absolutify paths to rendering/svg/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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
« no previous file with comments | « Source/core/rendering/RenderBlockLineLayout.cpp ('k') | Source/core/rendering/RenderObject.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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 #include "OverlapTestRequestClient.h" 69 #include "OverlapTestRequestClient.h"
70 #include "Page.h" 70 #include "Page.h"
71 #include "RenderArena.h" 71 #include "RenderArena.h"
72 #include "RenderFlowThread.h" 72 #include "RenderFlowThread.h"
73 #include "RenderGeometryMap.h" 73 #include "RenderGeometryMap.h"
74 #include "RenderInline.h" 74 #include "RenderInline.h"
75 #include "RenderLayerBacking.h" 75 #include "RenderLayerBacking.h"
76 #include "RenderLayerCompositor.h" 76 #include "RenderLayerCompositor.h"
77 #include "RenderMarquee.h" 77 #include "RenderMarquee.h"
78 #include "RenderReplica.h" 78 #include "RenderReplica.h"
79 #include "RenderSVGResourceClipper.h"
80 #include "RenderScrollbar.h" 79 #include "RenderScrollbar.h"
81 #include "RenderScrollbarPart.h" 80 #include "RenderScrollbarPart.h"
82 #include "RenderTheme.h" 81 #include "RenderTheme.h"
83 #include "RenderTreeAsText.h" 82 #include "RenderTreeAsText.h"
84 #include "RenderView.h" 83 #include "RenderView.h"
85 #include "ScrollingCoordinator.h" 84 #include "ScrollingCoordinator.h"
86 #include "Settings.h" 85 #include "Settings.h"
87 #include "ShadowRoot.h" 86 #include "ShadowRoot.h"
88 #include "StaticHashSetNodeList.h" 87 #include "StaticHashSetNodeList.h"
89 #include "StylePropertySet.h" 88 #include "StylePropertySet.h"
(...skipping 10 matching lines...) Expand all
100 #include "core/platform/graphics/FloatRect.h" 99 #include "core/platform/graphics/FloatRect.h"
101 #include "core/platform/graphics/Gradient.h" 100 #include "core/platform/graphics/Gradient.h"
102 #include "core/platform/graphics/GraphicsContext.h" 101 #include "core/platform/graphics/GraphicsContext.h"
103 #include "core/platform/graphics/filters/FEColorMatrix.h" 102 #include "core/platform/graphics/filters/FEColorMatrix.h"
104 #include "core/platform/graphics/filters/FEMerge.h" 103 #include "core/platform/graphics/filters/FEMerge.h"
105 #include "core/platform/graphics/filters/SourceGraphic.h" 104 #include "core/platform/graphics/filters/SourceGraphic.h"
106 #include "core/platform/graphics/transforms/ScaleTransformOperation.h" 105 #include "core/platform/graphics/transforms/ScaleTransformOperation.h"
107 #include "core/platform/graphics/transforms/TransformationMatrix.h" 106 #include "core/platform/graphics/transforms/TransformationMatrix.h"
108 #include "core/platform/graphics/transforms/TranslateTransformOperation.h" 107 #include "core/platform/graphics/transforms/TranslateTransformOperation.h"
109 #include "core/platform/text/TextStream.h" 108 #include "core/platform/text/TextStream.h"
109 #include "core/rendering/svg/RenderSVGResourceClipper.h"
110 #include <wtf/MemoryInstrumentationVector.h> 110 #include <wtf/MemoryInstrumentationVector.h>
111 #include <wtf/StdLibExtras.h> 111 #include <wtf/StdLibExtras.h>
112 #include <wtf/text/CString.h> 112 #include <wtf/text/CString.h>
113 #include <wtf/UnusedParam.h> 113 #include <wtf/UnusedParam.h>
114 114
115 #if ENABLE(SVG) 115 #if ENABLE(SVG)
116 #include "SVGNames.h" 116 #include "SVGNames.h"
117 #endif 117 #endif
118 118
119 #if USE(3D_GRAPHICS) 119 #if USE(3D_GRAPHICS)
(...skipping 6444 matching lines...) Expand 10 before | Expand all | Expand 10 after
6564 } 6564 }
6565 } 6565 }
6566 6566
6567 void showLayerTree(const WebCore::RenderObject* renderer) 6567 void showLayerTree(const WebCore::RenderObject* renderer)
6568 { 6568 {
6569 if (!renderer) 6569 if (!renderer)
6570 return; 6570 return;
6571 showLayerTree(renderer->enclosingLayer()); 6571 showLayerTree(renderer->enclosingLayer());
6572 } 6572 }
6573 #endif 6573 #endif
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderBlockLineLayout.cpp ('k') | Source/core/rendering/RenderObject.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698