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

Side by Side Diff: Source/core/layout/svg/SVGLayoutTreeAsText.h

Issue 933953003: Move the remaining rendering/svg/RenderSVG* files to layout. (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 13 matching lines...) Expand all
24 */ 24 */
25 25
26 #ifndef SVGLayoutTreeAsText_h 26 #ifndef SVGLayoutTreeAsText_h
27 #define SVGLayoutTreeAsText_h 27 #define SVGLayoutTreeAsText_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 LayoutObject; 33 class LayoutObject;
34 class RenderSVGGradientStop; 34 class LayoutSVGGradientStop;
35 class LayoutSVGImage; 35 class LayoutSVGImage;
36 class LayoutSVGInlineText; 36 class LayoutSVGInlineText;
37 class LayoutSVGShape; 37 class LayoutSVGShape;
38 class RenderSVGRoot; 38 class LayoutSVGRoot;
39 class LayoutSVGText; 39 class LayoutSVGText;
40 40
41 // functions used by the main LayoutTreeAsText code 41 // functions used by the main LayoutTreeAsText code
42 void write(TextStream&, const LayoutSVGShape&, int indent); 42 void write(TextStream&, const LayoutSVGShape&, int indent);
43 void write(TextStream&, const RenderSVGRoot&, int indent); 43 void write(TextStream&, const LayoutSVGRoot&, int indent);
44 void writeSVGGradientStop(TextStream&, const RenderSVGGradientStop&, int indent) ; 44 void writeSVGGradientStop(TextStream&, const LayoutSVGGradientStop&, int indent) ;
45 void writeSVGResourceContainer(TextStream&, const LayoutObject&, int indent); 45 void writeSVGResourceContainer(TextStream&, const LayoutObject&, int indent);
46 void writeSVGContainer(TextStream&, const LayoutObject&, int indent); 46 void writeSVGContainer(TextStream&, const LayoutObject&, int indent);
47 void writeSVGImage(TextStream&, const LayoutSVGImage&, int indent); 47 void writeSVGImage(TextStream&, const LayoutSVGImage&, int indent);
48 void writeSVGInlineText(TextStream&, const LayoutSVGInlineText&, int indent); 48 void writeSVGInlineText(TextStream&, const LayoutSVGInlineText&, int indent);
49 void writeSVGText(TextStream&, const LayoutSVGText&, int indent); 49 void writeSVGText(TextStream&, const LayoutSVGText&, int indent);
50 void writeResources(TextStream&, const LayoutObject&, int indent); 50 void writeResources(TextStream&, const LayoutObject&, int indent);
51 51
52 } // namespace blink 52 } // namespace blink
53 53
54 #endif // SVGLayoutTreeAsText_h 54 #endif // SVGLayoutTreeAsText_h
OLDNEW
« no previous file with comments | « Source/core/layout/svg/SVGLayoutSupport.cpp ('k') | Source/core/layout/svg/SVGLayoutTreeAsText.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698