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

Unified Diff: runtime/vm/dart_api_impl.cc

Issue 138033002: Make VM TypedList not implement ByteBuffer. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add Uint8Clamped list to test. Fix typo in status file. Created 6 years, 11 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
Index: runtime/vm/dart_api_impl.cc
diff --git a/runtime/vm/dart_api_impl.cc b/runtime/vm/dart_api_impl.cc
index 02cf5125698ae4a8372245e1c68895dff208071e..e1ee6ad5bda0d65669fc889a2110c1d56efc58cd 100644
--- a/runtime/vm/dart_api_impl.cc
+++ b/runtime/vm/dart_api_impl.cc
@@ -2597,7 +2597,7 @@ static Dart_Handle NewExternalByteData(
return ext_data;
}
Object& result = Object::Handle(isolate);
- result = GetByteDataConstructor(isolate, Symbols::ByteDataDotview(), 3);
+ result = GetByteDataConstructor(isolate, Symbols::ByteDataDot_view(), 3);
ASSERT(!result.IsNull());
ASSERT(result.IsFunction());
const Function& factory = Function::Cast(result);

Powered by Google App Engine
This is Rietveld 408576698