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

Unified Diff: runtime/vm/dart_api_impl_test.cc

Issue 545483002: Per isolate package root. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean up main.cc Created 6 years, 3 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/vm/dart_api_impl_test.cc
diff --git a/runtime/vm/dart_api_impl_test.cc b/runtime/vm/dart_api_impl_test.cc
index 4b0b5d51fccaf47a031352c86564b57888497486..7dff214c09ba859e45607bd32fea732f3dd1f976 100644
--- a/runtime/vm/dart_api_impl_test.cc
+++ b/runtime/vm/dart_api_impl_test.cc
@@ -7048,6 +7048,7 @@ UNIT_TEST_CASE(NewNativePort) {
static Dart_Isolate RunLoopTestCallback(const char* script_name,
const char* main,
+ const char* package_root,
void* data,
char** error) {
const char* kScriptChars =
@@ -7117,7 +7118,7 @@ static void RunLoopTest(bool throw_exception_child,
Dart_IsolateCreateCallback saved = Isolate::CreateCallback();
Isolate::SetCreateCallback(RunLoopTestCallback);
Isolate::SetUnhandledExceptionCallback(RunLoopUnhandledExceptionCallback);
- Dart_Isolate isolate = RunLoopTestCallback(NULL, NULL, NULL, NULL);
+ Dart_Isolate isolate = RunLoopTestCallback(NULL, NULL, NULL, NULL, NULL);
Dart_EnterIsolate(isolate);
Dart_EnterScope();

Powered by Google App Engine
This is Rietveld 408576698