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

Unified Diff: Source/core/rendering/svg/RenderSVGResource.h

Issue 673753004: Move RenderSVGResource into the inheritance hierarchy (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Non-move changes. 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/paint/SVGInlineTextBoxPainter.h ('k') | Source/core/rendering/svg/RenderSVGResource.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/svg/RenderSVGResource.h
diff --git a/Source/core/rendering/svg/RenderSVGResource.h b/Source/core/rendering/svg/RenderSVGResource.h
deleted file mode 100644
index abad795d2963d2878ce261f0138e67d512b7a27d..0000000000000000000000000000000000000000
--- a/Source/core/rendering/svg/RenderSVGResource.h
+++ /dev/null
@@ -1,89 +0,0 @@
-/*
- * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved.
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Library General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Library General Public License for more details.
- *
- * You should have received a copy of the GNU Library General Public License
- * along with this library; see the file COPYING.LIB. If not, write to
- * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- * Boston, MA 02110-1301, USA.
- */
-
-#ifndef RenderSVGResource_h
-#define RenderSVGResource_h
-
-#include "platform/graphics/Color.h"
-#include "platform/graphics/Gradient.h"
-#include "platform/graphics/Pattern.h"
-
-namespace blink {
-
-enum RenderSVGResourceMode {
- ApplyToFillMode,
- ApplyToStrokeMode,
-};
-
-class GraphicsContext;
-class GraphicsContextStateSaver;
-class RenderObject;
-class RenderSVGResource;
-class RenderStyle;
-
-class SVGPaintServer {
-public:
- explicit SVGPaintServer(Color);
- explicit SVGPaintServer(PassRefPtr<Gradient>);
- explicit SVGPaintServer(PassRefPtr<Pattern>);
-
- static SVGPaintServer requestForRenderer(const RenderObject&, const RenderStyle*, RenderSVGResourceMode);
- static bool existsForRenderer(const RenderObject&, const RenderStyle*, RenderSVGResourceMode);
-
- void apply(GraphicsContext&, RenderSVGResourceMode, GraphicsContextStateSaver* = 0);
-
- static SVGPaintServer invalid() { return SVGPaintServer(Color(Color::transparent)); }
- bool isValid() const { return m_color != Color::transparent; }
-
- bool isTransformDependent() const { return m_gradient || m_pattern; }
- void prependTransform(const AffineTransform&);
-
-private:
- RefPtr<Gradient> m_gradient;
- RefPtr<Pattern> m_pattern;
- Color m_color;
-};
-
-// If |SVGPaintDescription::hasFallback| is true, |SVGPaintDescription::color| is set to a fallback color.
-struct SVGPaintDescription {
- SVGPaintDescription() : resource(nullptr), isValid(false), hasFallback(false) { }
- SVGPaintDescription(Color color) : resource(nullptr), color(color), isValid(true), hasFallback(false) { }
- SVGPaintDescription(RenderSVGResource* resource) : resource(resource), isValid(true), hasFallback(false) { ASSERT(resource); }
- SVGPaintDescription(RenderSVGResource* resource, Color fallbackColor) : resource(resource), color(fallbackColor), isValid(true), hasFallback(true) { ASSERT(resource); }
-
- RenderSVGResource* resource;
- Color color;
- bool isValid;
- bool hasFallback;
-};
-
-class RenderSVGResource {
-public:
- RenderSVGResource() { }
- virtual ~RenderSVGResource() { }
-
- virtual SVGPaintServer preparePaintServer(const RenderObject&);
-
- // Helper utilities used in to access the underlying resources for DRT.
- static SVGPaintDescription requestPaintDescription(const RenderObject&, const RenderStyle*, RenderSVGResourceMode);
-};
-
-}
-
-#endif
« no previous file with comments | « Source/core/paint/SVGInlineTextBoxPainter.h ('k') | Source/core/rendering/svg/RenderSVGResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698