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

Unified Diff: Source/core/paint/SVGPaintContext.h

Issue 908243002: Move rendering/svg/RenderSVGResource* to layout/svg. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/paint/SVGInlineTextBoxPainter.cpp ('k') | Source/core/paint/SVGPaintContext.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/SVGPaintContext.h
diff --git a/Source/core/paint/SVGPaintContext.h b/Source/core/paint/SVGPaintContext.h
index 6493f12a084710d9413ce92bf185496ade8c6853..bdab32a9a61a69fbc2d49e501233541903c2de6b 100644
--- a/Source/core/paint/SVGPaintContext.h
+++ b/Source/core/paint/SVGPaintContext.h
@@ -26,17 +26,17 @@
#define SVGPaintContext_h
#include "core/layout/PaintInfo.h"
+#include "core/layout/svg/LayoutSVGResourceClipper.h"
#include "core/paint/CompositingRecorder.h"
#include "core/paint/FloatClipRecorder.h"
-#include "core/rendering/svg/RenderSVGResourceClipper.h"
#include "platform/graphics/paint/ClipPathRecorder.h"
#include "platform/transforms/AffineTransform.h"
namespace blink {
class LayoutObject;
-class RenderSVGResourceFilter;
-class RenderSVGResourceMasker;
+class LayoutSVGResourceFilter;
+class LayoutSVGResourceMasker;
class SVGResources;
class SVGPaintContext {
@@ -48,7 +48,7 @@ public:
, m_originalPaintInfo(&paintInfo)
, m_filter(nullptr)
, m_clipper(nullptr)
- , m_clipperState(RenderSVGResourceClipper::ClipperNotApplied)
+ , m_clipperState(LayoutSVGResourceClipper::ClipperNotApplied)
, m_masker(nullptr)
#if ENABLE(ASSERT)
, m_applyClipMaskAndFilterIfNecessaryCalled(false)
@@ -81,10 +81,10 @@ private:
RawPtrWillBeMember<LayoutObject> m_object;
PaintInfo m_paintInfo;
const PaintInfo* m_originalPaintInfo;
- RawPtrWillBeMember<RenderSVGResourceFilter> m_filter;
- RawPtrWillBeMember<RenderSVGResourceClipper> m_clipper;
- RenderSVGResourceClipper::ClipperState m_clipperState;
- RawPtrWillBeMember<RenderSVGResourceMasker> m_masker;
+ RawPtrWillBeMember<LayoutSVGResourceFilter> m_filter;
+ RawPtrWillBeMember<LayoutSVGResourceClipper> m_clipper;
+ LayoutSVGResourceClipper::ClipperState m_clipperState;
+ RawPtrWillBeMember<LayoutSVGResourceMasker> m_masker;
OwnPtr<CompositingRecorder> m_compositingRecorder;
OwnPtr<FloatClipRecorder> m_clipRecorder;
OwnPtr<ClipPathRecorder> m_clipPathRecorder;
« no previous file with comments | « Source/core/paint/SVGInlineTextBoxPainter.cpp ('k') | Source/core/paint/SVGPaintContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698