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

Unified Diff: runtime/vm/unit_test.cc

Issue 270503007: Eliminate unused url mapping parameter in dartutils (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 7 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/gen_snapshot.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/unit_test.cc
===================================================================
--- runtime/vm/unit_test.cc (revision 35851)
+++ runtime/vm/unit_test.cc (working copy)
@@ -81,7 +81,7 @@
Dart_Handle builtin_lib =
Builtin::LoadAndCheckLibrary(Builtin::kBuiltinLibrary);
DART_CHECK_VALID(builtin_lib);
- return DartUtils::CanonicalizeURL(NULL, library, url_chars);
+ return DartUtils::CanonicalizeURL(library, url_chars);
Ivan Posva 2014/05/07 22:04:06 This is the only surviving call to CanonicalizeURL
hausner 2014/05/08 23:10:03 Eliminated this use of CanonicalizeURL, which requ
}
if (is_dart_scheme_url) {
ASSERT(tag == Dart_kImportTag);
@@ -101,11 +101,7 @@
Builtin::PartSource(Builtin::kIOLibrary,
url_chars));
}
- return DartUtils::LoadSource(NULL,
- library,
- url,
- tag,
- url_chars);
+ return DartUtils::LoadSource(library, url, tag, url_chars);
}
« no previous file with comments | « runtime/bin/gen_snapshot.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698