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

Unified Diff: runtime/bin/file.h

Issue 10832269: Revert "Start adding TLS (SSL) sockets to dart:io." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | « runtime/bin/dartutils.cc ('k') | runtime/bin/io_sources.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/file.h
diff --git a/runtime/bin/file.h b/runtime/bin/file.h
index 5bc78f78e40faf5d1136ba7de00fd417bac96361..7b6ea8c09653b584d514c9a6f90fcf36de2a84fb 100644
--- a/runtime/bin/file.h
+++ b/runtime/bin/file.h
@@ -5,6 +5,13 @@
#ifndef BIN_FILE_H_
#define BIN_FILE_H_
+#if defined(_WIN32)
+typedef signed __int64 int64_t;
+typedef unsigned __int8 uint8_t;
+#else
+#include <stdint.h>
+#endif
+
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
« no previous file with comments | « runtime/bin/dartutils.cc ('k') | runtime/bin/io_sources.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698