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

Unified Diff: runtime/lib/isolate.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
Index: runtime/lib/isolate.cc
diff --git a/runtime/lib/isolate.cc b/runtime/lib/isolate.cc
index 08a6f71ac7f9f790441431937a766704822428d2..e4a549662d681aacefdcfa4dce3492ef49ff6cd6 100644
--- a/runtime/lib/isolate.cc
+++ b/runtime/lib/isolate.cc
@@ -90,7 +90,7 @@ RawObject* ReceivePortCreate(intptr_t port_id) {
const int kNumArguments = 1;
const Array& kNoArgumentNames = Array::Handle();
const Function& function = Function::Handle(
- Resolver::ResolveStatic(Library::Handle(Library::CoreLibrary()),
+ Resolver::ResolveStatic(Library::Handle(Library::IsolateLibrary()),
class_name,
function_name,
kNumArguments,
@@ -114,7 +114,7 @@ static RawObject* SendPortCreate(intptr_t port_id) {
const int kNumArguments = 1;
const Array& kNoArgumentNames = Array::Handle();
const Function& function = Function::Handle(
- Resolver::ResolveStatic(Library::Handle(Library::CoreLibrary()),
+ Resolver::ResolveStatic(Library::Handle(Library::IsolateLibrary()),
class_name,
function_name,
kNumArguments,

Powered by Google App Engine
This is Rietveld 408576698