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

Unified Diff: runtime/bin/embedded_dart_io.cc

Issue 1124193004: Add embedded_dart_io source_set for Sky (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 7 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/embedded_dart_io.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/embedded_dart_io.cc
diff --git a/runtime/bin/embedded_dart_io.cc b/runtime/bin/embedded_dart_io.cc
new file mode 100644
index 0000000000000000000000000000000000000000..1b3f40b951d67ef4acc9e8fce6c084255261fc4b
--- /dev/null
+++ b/runtime/bin/embedded_dart_io.cc
@@ -0,0 +1,20 @@
+// Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+#include "bin/embedded_dart_io.h"
+
+#include "bin/eventhandler.h"
+#include "bin/thread.h"
+
+namespace dart {
+namespace bin {
+
+void BootstrapDartIo() {
+ // Bootstrap 'dart:io' event handler.
+ Thread::InitOnce();
+ EventHandler::Start();
+}
+
+} // namespace bin
+} // namespace dart
« no previous file with comments | « runtime/bin/embedded_dart_io.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698