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

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

Issue 1070703002: Explicitly use SkPaint(s) in SVGInlineTextBoxPainter (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2007, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2007, 2009 Apple Inc. All rights reserved.
3 * (C) 2005 Rob Buis <buis@kde.org> 3 * (C) 2005 Rob Buis <buis@kde.org>
4 * (C) 2006 Alexander Kellett <lypanov@kde.org> 4 * (C) 2006 Alexander Kellett <lypanov@kde.org>
5 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 5 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 27 matching lines...) Expand all
38 #include "core/layout/svg/LayoutSVGResourceClipper.h" 38 #include "core/layout/svg/LayoutSVGResourceClipper.h"
39 #include "core/layout/svg/LayoutSVGResourceFilter.h" 39 #include "core/layout/svg/LayoutSVGResourceFilter.h"
40 #include "core/layout/svg/LayoutSVGResourceLinearGradient.h" 40 #include "core/layout/svg/LayoutSVGResourceLinearGradient.h"
41 #include "core/layout/svg/LayoutSVGResourceMarker.h" 41 #include "core/layout/svg/LayoutSVGResourceMarker.h"
42 #include "core/layout/svg/LayoutSVGResourceMasker.h" 42 #include "core/layout/svg/LayoutSVGResourceMasker.h"
43 #include "core/layout/svg/LayoutSVGResourcePattern.h" 43 #include "core/layout/svg/LayoutSVGResourcePattern.h"
44 #include "core/layout/svg/LayoutSVGResourceRadialGradient.h" 44 #include "core/layout/svg/LayoutSVGResourceRadialGradient.h"
45 #include "core/layout/svg/LayoutSVGRoot.h" 45 #include "core/layout/svg/LayoutSVGRoot.h"
46 #include "core/layout/svg/LayoutSVGShape.h" 46 #include "core/layout/svg/LayoutSVGShape.h"
47 #include "core/layout/svg/LayoutSVGText.h" 47 #include "core/layout/svg/LayoutSVGText.h"
48 #include "core/layout/svg/SVGLayoutSupport.h"
48 #include "core/layout/svg/line/SVGInlineTextBox.h" 49 #include "core/layout/svg/line/SVGInlineTextBox.h"
49 #include "core/layout/svg/line/SVGRootInlineBox.h" 50 #include "core/layout/svg/line/SVGRootInlineBox.h"
50 #include "core/svg/LinearGradientAttributes.h" 51 #include "core/svg/LinearGradientAttributes.h"
51 #include "core/svg/PatternAttributes.h" 52 #include "core/svg/PatternAttributes.h"
52 #include "core/svg/RadialGradientAttributes.h" 53 #include "core/svg/RadialGradientAttributes.h"
53 #include "core/svg/SVGCircleElement.h" 54 #include "core/svg/SVGCircleElement.h"
54 #include "core/svg/SVGEllipseElement.h" 55 #include "core/svg/SVGEllipseElement.h"
55 #include "core/svg/SVGLineElement.h" 56 #include "core/svg/SVGLineElement.h"
56 #include "core/svg/SVGLinearGradientElement.h" 57 #include "core/svg/SVGLinearGradientElement.h"
57 #include "core/svg/SVGPathElement.h" 58 #include "core/svg/SVGPathElement.h"
(...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after
669 ts << " "; 670 ts << " ";
670 writeNameAndQuotedValue(ts, "filter", svgStyle.filterResource()); 671 writeNameAndQuotedValue(ts, "filter", svgStyle.filterResource());
671 ts << " "; 672 ts << " ";
672 writeStandardPrefix(ts, *filter, 0); 673 writeStandardPrefix(ts, *filter, 0);
673 ts << " " << filter->resourceBoundingBox(&layoutObject) << "\n"; 674 ts << " " << filter->resourceBoundingBox(&layoutObject) << "\n";
674 } 675 }
675 } 676 }
676 } 677 }
677 678
678 } // namespace blink 679 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698