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

Unified Diff: runtime/vm/snapshot_test.cc

Issue 14029016: Remove legacy debugger API function (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 8 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/vm/debugger_api_impl_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot_test.cc
===================================================================
--- runtime/vm/snapshot_test.cc (revision 21241)
+++ runtime/vm/snapshot_test.cc (working copy)
@@ -1120,7 +1120,7 @@
EXPECT_VALID(Api::CheckIsolateState(Isolate::Current()));
// Get list of library URLs loaded and save the count.
- Dart_Handle libs = Dart_GetLibraryURLs();
+ Dart_Handle libs = Dart_GetLibraryIds();
EXPECT(Dart_IsList(libs));
Dart_ListLength(libs, &expected_num_libs);
@@ -1145,7 +1145,7 @@
EXPECT_VALID(result);
// Get list of library URLs loaded and compare with expected count.
- Dart_Handle libs = Dart_GetLibraryURLs();
+ Dart_Handle libs = Dart_GetLibraryIds();
EXPECT(Dart_IsList(libs));
Dart_ListLength(libs, &actual_num_libs);
« no previous file with comments | « runtime/vm/debugger_api_impl_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698