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

Unified Diff: Source/core/platform/graphics/filters/Filter.h

Issue 18551004: Miscellaneous cleanup to reduce number of includes in platform/graphics/ Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 6 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
Index: Source/core/platform/graphics/filters/Filter.h
diff --git a/Source/core/platform/graphics/filters/Filter.h b/Source/core/platform/graphics/filters/Filter.h
index 120de231ca20e009c1f61af0aa6819ffefec5d97..8e614735f7fd5b5886d9a0ed2052c8d1be92cc7a 100644
--- a/Source/core/platform/graphics/filters/Filter.h
+++ b/Source/core/platform/graphics/filters/Filter.h
@@ -24,7 +24,9 @@
#include "core/platform/graphics/FloatRect.h"
#include "core/platform/graphics/FloatSize.h"
#include "core/platform/graphics/ImageBuffer.h"
-#include <wtf/RefCounted.h>
+#include "core/platform/graphics/transforms/AffineTransform.h"
+#include "wtf/OwnPtr.h"
+#include "wtf/RefCounted.h"
namespace WebCore {
@@ -50,7 +52,7 @@ public:
virtual float applyHorizontalScale(float value) const { return value * m_filterResolution.width(); }
virtual float applyVerticalScale(float value) const { return value * m_filterResolution.height(); }
-
+
virtual FloatRect sourceImageRect() const = 0;
FloatRect absoluteFilterRegion() const { return m_absoluteFilterRegion; }

Powered by Google App Engine
This is Rietveld 408576698