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

Unified Diff: runtime/bin/fuchsia_test.cc

Issue 2193313003: Fuchsia changes for my recent cl. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/fuchsia_test.cc
diff --git a/runtime/bin/fuchsia_test.cc b/runtime/bin/fuchsia_test.cc
index d063612a450eff6eba0e11b2513b8180b5a8c855..341f9c7c4ead4596b89df4326f8113689f517745 100644
--- a/runtime/bin/fuchsia_test.cc
+++ b/runtime/bin/fuchsia_test.cc
@@ -72,7 +72,8 @@ static Dart_Handle PrepareBuiltinLibrary(const char* script) {
DART_CHECK_VALID(builtin_script);
Log::Print("Loading builtin library\n");
- Dart_Handle status = Dart_LoadLibrary(builtin_uri, builtin_script, 0, 0);
+ Dart_Handle status =
+ Dart_LoadLibrary(builtin_uri, Dart_Null(), builtin_script, 0, 0);
DART_CHECK_VALID(status);
Log::Print("Looking up builtin library\n");
@@ -96,7 +97,8 @@ static Dart_Handle PrepareScriptLibrary(const char* script) {
DART_CHECK_VALID(script_string);
Log::Print("Loading script into new library\n");
- Dart_Handle status = Dart_LoadLibrary(script_uri, script_string, 0, 0);
+ Dart_Handle status =
+ Dart_LoadLibrary(script_uri, Dart_Null(), script_string, 0, 0);
DART_CHECK_VALID(status);
Log::Print("Looking up script library\n");
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698