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

Unified Diff: runtime/bin/io_buffer.cc

Issue 21816002: Add Process.runSync for running processe synchronously. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixed another Windows issue Created 7 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
Index: runtime/bin/io_buffer.cc
diff --git a/runtime/bin/io_buffer.cc b/runtime/bin/io_buffer.cc
index dbc10476f37d7900083b93b8eef2220305be0d16..ef08b4f20457d4dde8996e9c76ff64b33557fd55 100644
--- a/runtime/bin/io_buffer.cc
+++ b/runtime/bin/io_buffer.cc
@@ -24,6 +24,7 @@ Dart_Handle IOBuffer::Allocate(intptr_t size, uint8_t **buffer) {
return result;
}
+
uint8_t* IOBuffer::Allocate(intptr_t size) {
return new uint8_t[size];
}

Powered by Google App Engine
This is Rietveld 408576698