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

Unified Diff: runtime/vm/dart_api_impl.cc

Issue 2196593003: More fixes. (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 | « runtime/bin/builtin.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart_api_impl.cc
diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc
index 4fd30032a592101eacb0fc33941c87590b484cb0..1e8dcc06ebb6fb67084de24ec4e0ae5d425ab84e 100644
--- a/runtime/vm/dart_api_impl.cc
+++ b/runtime/vm/dart_api_impl.cc
@@ -5518,7 +5518,7 @@ DART_EXPORT Dart_Handle Dart_LoadLibrary(Dart_Handle url,
if (url_str.IsNull()) {
RETURN_TYPE_ERROR(Z, url, String);
}
- if (Dart_IsNull(resolved_url)) {
+ if (::Dart_IsNull(resolved_url)) {
resolved_url = url;
}
const String& resolved_url_str = Api::UnwrapStringHandle(Z, resolved_url);
@@ -5637,7 +5637,7 @@ DART_EXPORT Dart_Handle Dart_LoadSource(Dart_Handle library,
if (url_str.IsNull()) {
RETURN_TYPE_ERROR(Z, url, String);
}
- if (Dart_IsNull(resolved_url)) {
+ if (::Dart_IsNull(resolved_url)) {
resolved_url = url;
}
const String& resolved_url_str = Api::UnwrapStringHandle(Z, resolved_url);
« no previous file with comments | « runtime/bin/builtin.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698