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

Unified Diff: runtime/vm/bootstrap_natives.cc

Issue 9422019: isolates refactor: this change introduces 'dart:isolate' as a library. This is a (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: '' Created 8 years, 10 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/vm/bootstrap.cc ('k') | runtime/vm/bootstrap_nocorelib.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/bootstrap_natives.cc
diff --git a/runtime/vm/bootstrap_natives.cc b/runtime/vm/bootstrap_natives.cc
index 2c0d9175ce61d114e86be30aea25fa2ba18a1e73..d3da9f539cc8b5a28148233498f04123bfab7d03 100644
--- a/runtime/vm/bootstrap_natives.cc
+++ b/runtime/vm/bootstrap_natives.cc
@@ -55,10 +55,16 @@ void Bootstrap::SetupNativeResolver() {
ASSERT(!library.IsNull());
library.set_native_entry_resolver(
reinterpret_cast<Dart_NativeEntryResolver>(NativeLookup));
+
library = Library::CoreImplLibrary();
ASSERT(!library.IsNull());
library.set_native_entry_resolver(
reinterpret_cast<Dart_NativeEntryResolver>(NativeLookup));
+
+ library = Library::IsolateLibrary();
+ ASSERT(!library.IsNull());
+ library.set_native_entry_resolver(
+ reinterpret_cast<Dart_NativeEntryResolver>(NativeLookup));
}
} // namespace dart
« no previous file with comments | « runtime/vm/bootstrap.cc ('k') | runtime/vm/bootstrap_nocorelib.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698