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

Side by Side Diff: Source/core/rendering/svg/SVGRenderTreeAsText.h

Issue 899163003: Move rendering/RenderObject to layout/LayoutObject. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 12 matching lines...) Expand all
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef SVGRenderTreeAsText_h 26 #ifndef SVGRenderTreeAsText_h
27 #define SVGRenderTreeAsText_h 27 #define SVGRenderTreeAsText_h
28 28
29 #include "platform/text/TextStream.h" 29 #include "platform/text/TextStream.h"
30 30
31 namespace blink { 31 namespace blink {
32 32
33 class RenderObject; 33 class LayoutObject;
34 class RenderSVGGradientStop; 34 class RenderSVGGradientStop;
35 class RenderSVGImage; 35 class RenderSVGImage;
36 class RenderSVGInlineText; 36 class RenderSVGInlineText;
37 class RenderSVGShape; 37 class RenderSVGShape;
38 class RenderSVGRoot; 38 class RenderSVGRoot;
39 class RenderSVGText; 39 class RenderSVGText;
40 40
41 // functions used by the main LayoutTreeAsText code 41 // functions used by the main LayoutTreeAsText code
42 void write(TextStream&, const RenderSVGShape&, int indent); 42 void write(TextStream&, const RenderSVGShape&, int indent);
43 void write(TextStream&, const RenderSVGRoot&, int indent); 43 void write(TextStream&, const RenderSVGRoot&, int indent);
44 void writeSVGGradientStop(TextStream&, const RenderSVGGradientStop&, int indent) ; 44 void writeSVGGradientStop(TextStream&, const RenderSVGGradientStop&, int indent) ;
45 void writeSVGResourceContainer(TextStream&, const RenderObject&, int indent); 45 void writeSVGResourceContainer(TextStream&, const LayoutObject&, int indent);
46 void writeSVGContainer(TextStream&, const RenderObject&, int indent); 46 void writeSVGContainer(TextStream&, const LayoutObject&, int indent);
47 void writeSVGImage(TextStream&, const RenderSVGImage&, int indent); 47 void writeSVGImage(TextStream&, const RenderSVGImage&, int indent);
48 void writeSVGInlineText(TextStream&, const RenderSVGInlineText&, int indent); 48 void writeSVGInlineText(TextStream&, const RenderSVGInlineText&, int indent);
49 void writeSVGText(TextStream&, const RenderSVGText&, int indent); 49 void writeSVGText(TextStream&, const RenderSVGText&, int indent);
50 void writeResources(TextStream&, const RenderObject&, int indent); 50 void writeResources(TextStream&, const LayoutObject&, int indent);
51 51
52 } // namespace blink 52 } // namespace blink
53 53
54 #endif // SVGRenderTreeAsText_h 54 #endif // SVGRenderTreeAsText_h
OLDNEW
« no previous file with comments | « Source/core/rendering/svg/SVGRenderSupport.cpp ('k') | Source/core/rendering/svg/SVGRenderTreeAsText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698