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

Unified Diff: public/platform/WebCommon.h

Issue 1223843017: Remove typedefs for stdint types on WIN32. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 5 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/platform/WebCommon.h
diff --git a/public/platform/WebCommon.h b/public/platform/WebCommon.h
index 1491ddcd58eb835710b6e2428788df669c0d6d78..561f850eeaa6352bcf1311e06f461b077d7f2230 100644
--- a/public/platform/WebCommon.h
+++ b/public/platform/WebCommon.h
@@ -84,18 +84,7 @@
// Basic types
#include <stddef.h> // For size_t
-
-#if defined(WIN32)
-// Visual Studio doesn't have stdint.h.
-typedef short int16_t;
-typedef unsigned short uint16_t;
-typedef int int32_t;
-typedef __int64 int64_t;
-typedef unsigned int uint32_t;
-typedef unsigned __int64 uint64_t;
-#else
#include <stdint.h> // For int32_t
-#endif
namespace blink {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698