aboutsummaryrefslogtreecommitdiff
path: root/tests/AndroidCodecTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/AndroidCodecTest.cpp')
-rw-r--r--tests/AndroidCodecTest.cpp15
1 files changed, 13 insertions, 2 deletions
diff --git a/tests/AndroidCodecTest.cpp b/tests/AndroidCodecTest.cpp
index d383713bb9..430b0b7178 100644
--- a/tests/AndroidCodecTest.cpp
+++ b/tests/AndroidCodecTest.cpp
@@ -5,15 +5,26 @@
* found in the LICENSE file.
*/
+#include "Resources.h"
#include "SkAndroidCodec.h"
+#include "SkBitmap.h"
#include "SkCodec.h"
#include "SkCodecImageGenerator.h"
+#include "SkColor.h"
+#include "SkData.h"
#include "SkEncodedImageFormat.h"
+#include "SkImageGenerator.h"
+#include "SkImageInfo.h"
#include "SkPixmapPriv.h"
-
-#include "Resources.h"
+#include "SkRefCnt.h"
+#include "SkSize.h"
+#include "SkString.h"
+#include "SkTypes.h"
#include "Test.h"
+#include <algorithm>
+#include <memory>
+
static SkISize times(const SkISize& size, float factor) {
return { (int) (size.width() * factor), (int) (size.height() * factor) };
}