Index: skia/ext/convolver.h |
diff --git a/skia/ext/convolver.h b/skia/ext/convolver.h |
index 1f61f23a2ca395759822224371fed46640ab5a44..1f33d4c0f797020a5b2f6882716d0ef1428fd228 100644 |
--- a/skia/ext/convolver.h |
+++ b/skia/ext/convolver.h |
@@ -5,10 +5,12 @@ |
#ifndef SKIA_EXT_CONVOLVER_H_ |
#define SKIA_EXT_CONVOLVER_H_ |
+#include <stdint.h> |
Nico
2015/12/22 17:13:28
i think this one isn't needed either, but int16_t
|
+ |
#include <cmath> |
#include <vector> |
-#include "base/basictypes.h" |
+#include "build/build_config.h" |
#include "third_party/skia/include/core/SkSize.h" |
#include "third_party/skia/include/core/SkTypes.h" |
@@ -16,7 +18,7 @@ |
// except when building for the IOS emulator. |
#if defined(ARCH_CPU_X86_FAMILY) && !defined(OS_IOS) |
#define SIMD_SSE2 1 |
-#define SIMD_PADDING 8 // 8 * int16 |
+#define SIMD_PADDING 8 // 8 * int16_t |
#endif |
#if defined (ARCH_CPU_MIPS_FAMILY) && \ |