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

Unified Diff: vm/dart_api_impl_test.cc

Issue 9701054: - Proper inclusion of gypi files, so that they do not override (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 9 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 | « third_party/jscre/jscre.gypi ('k') | vm/token.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/dart_api_impl_test.cc
===================================================================
--- vm/dart_api_impl_test.cc (revision 5503)
+++ vm/dart_api_impl_test.cc (working copy)
@@ -2827,7 +2827,6 @@
" return obj;\n"
" }\n"
"}\n";
- Dart_Handle result;
const int kNumNativeFields = 4;
// Create a test library.
@@ -2835,10 +2834,11 @@
native_field_lookup);
// Create a native wrapper class with native fields.
- result = Dart_CreateNativeWrapperClass(
+ Dart_Handle result = Dart_CreateNativeWrapperClass(
lib,
Dart_NewString("NativeFieldsWrapper"),
kNumNativeFields);
+ EXPECT_VALID(result);
// Load up a test script in it.
« no previous file with comments | « third_party/jscre/jscre.gypi ('k') | vm/token.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698