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

Unified Diff: skia/ext/convolver.h

Issue 1540963004: Switch to standard integer types in skia/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: missed some Created 5 years 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 | « skia/ext/bitmap_platform_device_win.cc ('k') | skia/ext/convolver_SSE2.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) && \
« no previous file with comments | « skia/ext/bitmap_platform_device_win.cc ('k') | skia/ext/convolver_SSE2.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698