aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Mike Reed <reed@google.com>2017-02-10 13:11:53 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2017-02-10 19:43:03 +0000
commit2aeae78a2ce3b036f0401fd0381d6fd6e2a7a1fc (patch)
tree3248b2ed5fc5447342dfd4d1a824f4c93b880882
parent79086b94eda7c46c37e1cf4395eb75ef54807e3c (diff)
IWYU
BUG=skia: Change-Id: Ib6b4d52841dbe3fa69a86ddb6b97d6a5d0f004ee Reviewed-on: https://skia-review.googlesource.com/8231 Reviewed-by: Florin Malita <fmalita@chromium.org> Commit-Queue: Mike Reed <reed@google.com>
-rw-r--r--gm/drawregion.cpp1
-rw-r--r--gm/drawregionmodes.cpp1
-rw-r--r--gm/imagealphathreshold.cpp1
-rw-r--r--include/core/SkBitmap.h1
-rw-r--r--include/core/SkCanvas.h8
-rw-r--r--include/private/SkRecords.h1
-rw-r--r--samplecode/SampleDitherBitmap.cpp1
-rw-r--r--src/core/SkLiteDL.cpp1
-rw-r--r--src/utils/SkCanvasStack.h1
-rw-r--r--src/utils/SkDumpCanvas.cpp1
-rw-r--r--tests/PathOpsExtendedTest.cpp1
-rw-r--r--tests/SurfaceTest.cpp1
-rw-r--r--tools/debugger/SkDrawCommand.h1
13 files changed, 14 insertions, 6 deletions
diff --git a/gm/drawregion.cpp b/gm/drawregion.cpp
index a2633f9d9f..2230f09190 100644
--- a/gm/drawregion.cpp
+++ b/gm/drawregion.cpp
@@ -7,6 +7,7 @@
#include "gm.h"
#include "SkCanvas.h"
+#include "SkRegion.h"
/**
* This is very similar to the RectGrid macrobench in Android.
diff --git a/gm/drawregionmodes.cpp b/gm/drawregionmodes.cpp
index be1c2d20e0..efccc88ace 100644
--- a/gm/drawregionmodes.cpp
+++ b/gm/drawregionmodes.cpp
@@ -11,6 +11,7 @@
#include "SkDashPathEffect.h"
#include "SkGradientShader.h"
#include "SkImageFilter.h"
+#include "SkRegion.h"
class DrawRegionModesGM : public skiagm::GM {
public:
diff --git a/gm/imagealphathreshold.cpp b/gm/imagealphathreshold.cpp
index 547e812e11..4a35018435 100644
--- a/gm/imagealphathreshold.cpp
+++ b/gm/imagealphathreshold.cpp
@@ -8,6 +8,7 @@
#include "gm.h"
#include "SkAlphaThresholdFilter.h"
#include "SkOffsetImageFilter.h"
+#include "SkRegion.h"
#include "SkSurface.h"
#define WIDTH 500
diff --git a/include/core/SkBitmap.h b/include/core/SkBitmap.h
index 08faaafd43..c404481371 100644
--- a/include/core/SkBitmap.h
+++ b/include/core/SkBitmap.h
@@ -21,7 +21,6 @@ struct SkRect;
class SkPaint;
class SkPixelRef;
class SkPixelRefFactory;
-class SkRegion;
class SkString;
/** \class SkBitmap
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h
index d58b7ea515..193d1afd69 100644
--- a/include/core/SkCanvas.h
+++ b/include/core/SkCanvas.h
@@ -8,16 +8,11 @@
#ifndef SkCanvas_DEFINED
#define SkCanvas_DEFINED
-#include "SkTypes.h"
#include "SkBlendMode.h"
-#include "SkBitmap.h"
#include "SkClipOp.h"
#include "SkDeque.h"
-#include "SkImage.h"
#include "SkPaint.h"
#include "SkRasterHandleAllocator.h"
-#include "SkRefCnt.h"
-#include "SkRegion.h"
#include "SkSurfaceProps.h"
#include "SkLights.h"
#include "../private/SkShadowParams.h"
@@ -25,18 +20,21 @@
class GrContext;
class GrRenderTargetContext;
class SkBaseDevice;
+class SkBitmap;
class SkCanvasClipVisitor;
class SkClipStack;
class SkData;
class SkDraw;
class SkDrawable;
class SkDrawFilter;
+class SkImage;
class SkImageFilter;
class SkMetaData;
class SkPath;
class SkPicture;
class SkPixmap;
class SkRasterClip;
+class SkRegion;
class SkRRect;
struct SkRSXform;
class SkSurface;
diff --git a/include/private/SkRecords.h b/include/private/SkRecords.h
index d1fadc3395..b81bca87ee 100644
--- a/include/private/SkRecords.h
+++ b/include/private/SkRecords.h
@@ -16,6 +16,7 @@
#include "SkPath.h"
#include "SkPicture.h"
#include "SkRect.h"
+#include "SkRegion.h"
#include "SkRRect.h"
#include "SkRSXform.h"
#include "SkString.h"
diff --git a/samplecode/SampleDitherBitmap.cpp b/samplecode/SampleDitherBitmap.cpp
index 34241c5e02..676d4c3530 100644
--- a/samplecode/SampleDitherBitmap.cpp
+++ b/samplecode/SampleDitherBitmap.cpp
@@ -10,6 +10,7 @@
#include "SkColorPriv.h"
#include "SkGradientShader.h"
#include "SkPath.h"
+#include "SkRegion.h"
#include "SkUtils.h"
#include "SkView.h"
diff --git a/src/core/SkLiteDL.cpp b/src/core/SkLiteDL.cpp
index 2548a818e7..95e801a0da 100644
--- a/src/core/SkLiteDL.cpp
+++ b/src/core/SkLiteDL.cpp
@@ -12,6 +12,7 @@
#include "SkLiteDL.h"
#include "SkMath.h"
#include "SkPicture.h"
+#include "SkRegion.h"
#include "SkRSXform.h"
#include "SkTextBlob.h"
diff --git a/src/utils/SkCanvasStack.h b/src/utils/SkCanvasStack.h
index 73a3386c0f..cdeeb843b6 100644
--- a/src/utils/SkCanvasStack.h
+++ b/src/utils/SkCanvasStack.h
@@ -9,6 +9,7 @@
#define SkCanvasStack_DEFINED
#include "SkNWayCanvas.h"
+#include "SkRegion.h"
#include "SkTArray.h"
/**
diff --git a/src/utils/SkDumpCanvas.cpp b/src/utils/SkDumpCanvas.cpp
index 85e02430de..dc420136f5 100644
--- a/src/utils/SkDumpCanvas.cpp
+++ b/src/utils/SkDumpCanvas.cpp
@@ -10,6 +10,7 @@
#include "SkPatchUtils.h"
#include "SkPicture.h"
#include "SkPixelRef.h"
+#include "SkRegion.h"
#include "SkRRect.h"
#include "SkString.h"
#include "SkTextBlob.h"
diff --git a/tests/PathOpsExtendedTest.cpp b/tests/PathOpsExtendedTest.cpp
index d70deb30fc..279faa422c 100644
--- a/tests/PathOpsExtendedTest.cpp
+++ b/tests/PathOpsExtendedTest.cpp
@@ -12,6 +12,7 @@
#include "SkMatrix.h"
#include "SkMutex.h"
#include "SkPaint.h"
+#include "SkRegion.h"
#include "SkStream.h"
#include <stdlib.h>
diff --git a/tests/SurfaceTest.cpp b/tests/SurfaceTest.cpp
index dd71943dd9..b85ac81788 100644
--- a/tests/SurfaceTest.cpp
+++ b/tests/SurfaceTest.cpp
@@ -13,6 +13,7 @@
#include "SkImage_Base.h"
#include "SkOverdrawCanvas.h"
#include "SkPath.h"
+#include "SkRegion.h"
#include "SkRRect.h"
#include "SkSurface.h"
#include "SkUtils.h"
diff --git a/tools/debugger/SkDrawCommand.h b/tools/debugger/SkDrawCommand.h
index 266fc99fad..964badcf58 100644
--- a/tools/debugger/SkDrawCommand.h
+++ b/tools/debugger/SkDrawCommand.h
@@ -11,6 +11,7 @@
#include "SkCanvas.h"
#include "SkTLazy.h"
#include "SkPath.h"
+#include "SkRegion.h"
#include "SkRRect.h"
#include "SkRSXform.h"
#include "SkString.h"