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

Side by Side Diff: Source/core/paint/SVGPaintServer.h

Issue 638933002: Introduce SVGPaintServer (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Pass GCSS only - not GCSS and GC. Created 6 years, 2 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
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SVGPaintServer_h
6 #define SVGPaintServer_h
7
8 #include "core/rendering/svg/RenderSVGResource.h"
9 #include "platform/graphics/Gradient.h"
10 #include "platform/graphics/Pattern.h"
11
12 namespace blink {
13
14 class GraphicsContext;
15 class GraphicsContextStateSaver;
16
17 class SVGPaintServer {
18 WTF_MAKE_FAST_ALLOCATED;
19 public:
20 SVGPaintServer(Color);
21 SVGPaintServer(PassRefPtr<Gradient>);
22 SVGPaintServer(PassRefPtr<Pattern>);
23
24 // Update the GC state (on |stateSaver.context()|) for painting |renderer|
25 // using |style|. |resourceModeFlags| is used to decide between fill/stroke.
26 // Previous state will be saved (if needed) using |stateSaver|.
27 static bool updateGraphicsContext(GraphicsContextStateSaver&, RenderStyle*, RenderObject&, RenderSVGResourceModeFlags);
28
29 void apply(GraphicsContext&, RenderSVGResourceMode, GraphicsContextStateSave r* = 0);
30
31 private:
32 static PassOwnPtr<SVGPaintServer> requestForRenderer(RenderObject&, RenderSt yle*, RenderSVGResourceModeFlags);
33
34 RefPtr<Gradient> m_gradient;
35 RefPtr<Pattern> m_pattern;
36 Color m_color;
37 };
38
39 } // namespace blink
40
41 #endif // SVGPaintServer_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698