Chromium Code Reviews| 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 |