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

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

Issue 12036013: Initial work on ImageData.data. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | tools/dom/scripts/systemnative.py » ('J')
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 6276aa70662e848dcf08f2e26ffed8a334f8b82f..66f851198cc4ea01ba72f99dd5c048b6984014a9 100644
--- a/sdk/lib/html/dart2js/html_dart2js.dart
+++ b/sdk/lib/html/dart2js/html_dart2js.dart
@@ -12943,19 +12943,19 @@ class IFrameElement extends Element native "*HTMLIFrameElement" {
@DomName('HTMLIFrameElement.width')
String width;
}
-// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-
-
@DocsEditable
@DomName('ImageData')
+
class ImageData native "*ImageData" {
+
@DocsEditable
@DomName('ImageData.data')
- final Uint8ClampedArray data;
blois 2013/01/22 17:10:44 Might be good to keep the old version around (as e
Anton Muhin 2013/01/23 08:38:21 I'd prefer not to keep to different, but very clos
+ final List<int> data;
@DocsEditable
@DomName('ImageData.height')
@@ -12964,6 +12964,7 @@ class ImageData native "*ImageData" {
@DocsEditable
@DomName('ImageData.width')
final int width;
+
}
// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
« no previous file with comments | « no previous file | sdk/lib/html/dartium/html_dartium.dart » ('j') | tools/dom/scripts/systemnative.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698