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

Unified Diff: sdk/lib/html/dart2js/html_dart2js.dart

Issue 140543002: Revert "Redo "Make dart2js typed_data implementation classes private"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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:
Download patch
« no previous file with comments | « sdk/lib/_internal/libraries.dart ('k') | sdk/lib/html/html_common/conversions.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dart2js/html_dart2js.dart
diff --git a/sdk/lib/html/dart2js/html_dart2js.dart b/sdk/lib/html/dart2js/html_dart2js.dart
index eff0c295477cfa74e0f89c7f3c346cd7eef10996..bf95296b0f4c6423847462e633ba13907bd9fad1 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -32,7 +32,7 @@ import 'dart:indexed_db';
import 'dart:isolate';
import "dart:convert";
import 'dart:math';
-import 'dart:_native_typed_data';
+import 'dart:typed_data';
import 'dart:svg' as svg;
import 'dart:svg' show Matrix;
import 'dart:web_audio' as web_audio;
@@ -12838,7 +12838,7 @@ class FileReader extends EventTarget native "FileReader" {
@DomName('FileReader.result')
@DocsEditable()
- @Creates('String|NativeByteBuffer|Null')
+ @Creates('String|ByteBuffer|Null')
final Object result;
@DomName('FileReader.abort')
@@ -14960,7 +14960,7 @@ class HttpRequest extends HttpRequestEventTarget native "XMLHttpRequest" {
@SupportedBrowser(SupportedBrowser.FIREFOX)
@SupportedBrowser(SupportedBrowser.IE, '10')
@SupportedBrowser(SupportedBrowser.SAFARI)
- @Creates('NativeByteBuffer|Blob|Document|=Object|JSExtendableArray|String|num')
+ @Creates('ByteBuffer|Blob|Document|=Object|JSExtendableArray|String|num')
final dynamic _get_response;
/**
@@ -15417,8 +15417,8 @@ class ImageData extends Interceptor native "ImageData" {
@DomName('ImageData.data')
@DocsEditable()
- @Creates('NativeUint8ClampedList')
- @Returns('NativeUint8ClampedList')
+ @Creates('Uint8ClampedList')
+ @Returns('Uint8ClampedList')
final List<int> data;
@DomName('ImageData.height')
« no previous file with comments | « sdk/lib/_internal/libraries.dart ('k') | sdk/lib/html/html_common/conversions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698