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

Unified Diff: runtime/vm/dart_api_impl_test.cc

Issue 14426006: Rename dart:typeddata to dart:typed_data. (Closed) Base URL: https://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/dart_api_impl.cc ('k') | runtime/vm/dart_api_message.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/dart_api_impl_test.cc
diff --git a/runtime/vm/dart_api_impl_test.cc b/runtime/vm/dart_api_impl_test.cc
index a5c682e924d7f3078f4fb398098c51323763b5ee..210e1fa4d85572efd7d44b0a12d9d5588a317cbd 100644
--- a/runtime/vm/dart_api_impl_test.cc
+++ b/runtime/vm/dart_api_impl_test.cc
@@ -905,7 +905,7 @@ static Dart_NativeFunction ByteDataNativeResolver(Dart_Handle name,
TEST_CASE(ByteDataAccess) {
const char* kScriptChars =
- "import 'dart:typeddata';\n"
+ "import 'dart:typed_data';\n"
"class Expect {\n"
" static equals(a, b) {\n"
" if (a != b) {\n"
@@ -967,7 +967,7 @@ TEST_CASE(ExternalByteDataAccess) {
// TODO(asiva): Once we have getInt16LE and getInt16BE support use the
// appropriate getter instead of the host endian format used now.
const char* kScriptChars =
- "import 'dart:typeddata';\n"
+ "import 'dart:typed_data';\n"
"class Expect {\n"
" static equals(a, b) {\n"
" if (a != b) {\n"
@@ -1086,7 +1086,7 @@ static void TestDirectAccess(Dart_Handle lib,
TEST_CASE(TypedDataDirectAccess1) {
const char* kScriptChars =
- "import 'dart:typeddata';\n"
+ "import 'dart:typed_data';\n"
"class Expect {\n"
" static equals(a, b) {\n"
" if (a != b) {\n"
@@ -1133,7 +1133,7 @@ TEST_CASE(TypedDataDirectAccess1) {
TEST_CASE(TypedDataViewDirectAccess) {
const char* kScriptChars =
- "import 'dart:typeddata';\n"
+ "import 'dart:typed_data';\n"
"class Expect {\n"
" static equals(a, b) {\n"
" if (a != b) {\n"
@@ -1172,7 +1172,7 @@ TEST_CASE(TypedDataViewDirectAccess) {
TEST_CASE(ByteDataDirectAccess) {
const char* kScriptChars =
- "import 'dart:typeddata';\n"
+ "import 'dart:typed_data';\n"
"class Expect {\n"
" static equals(a, b) {\n"
" if (a != b) {\n"
@@ -1377,7 +1377,7 @@ static void CheckFloat32x4Data(Dart_Handle obj) {
TEST_CASE(Float32x4List) {
const char* kScriptChars =
- "import 'dart:typeddata';\n"
+ "import 'dart:typed_data';\n"
"Float32x4List float32x4() {\n"
" return new Float32x4List(10);\n"
"}\n";
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/dart_api_message.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698