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

Side by Side Diff: client/dom/frog/frog_dom.dart

Issue 8784013: Fix CanvasPixelArray's operator[] for the wrapping js dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rerun Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | client/dom/generated/monkey_dom.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('dom'); 1 #library('dom');
2 2
3 #native('frog_dom.js'); 3 #native('frog_dom.js');
4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
5 // for details. All rights reserved. Use of this source code is governed by a 5 // for details. All rights reserved. Use of this source code is governed by a
6 // BSD-style license that can be found in the LICENSE file. 6 // BSD-style license that can be found in the LICENSE file.
7 7
8 // DO NOT EDIT 8 // DO NOT EDIT
9 // Auto-generated Dart DOM library. 9 // Auto-generated Dart DOM library.
10 10
(...skipping 579 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 590
591 String get typeName() native; 591 String get typeName() native;
592 } 592 }
593 593
594 class CanvasPixelArray native "*CanvasPixelArray" { 594 class CanvasPixelArray native "*CanvasPixelArray" {
595 595
596 int length; 596 int length;
597 597
598 int operator[](int index) native; 598 int operator[](int index) native;
599 599
600 int item(int index) native;
601
602 var dartObjectLocalStorage; 600 var dartObjectLocalStorage;
603 601
604 String get typeName() native; 602 String get typeName() native;
605 } 603 }
606 604
607 class CanvasRenderingContext native "*CanvasRenderingContext" { 605 class CanvasRenderingContext native "*CanvasRenderingContext" {
608 606
609 HTMLCanvasElement canvas; 607 HTMLCanvasElement canvas;
610 608
611 var dartObjectLocalStorage; 609 var dartObjectLocalStorage;
(...skipping 10442 matching lines...) Expand 10 before | Expand all | Expand 10 after
11054 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 11052 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
11055 // for details. All rights reserved. Use of this source code is governed by a 11053 // for details. All rights reserved. Use of this source code is governed by a
11056 // BSD-style license that can be found in the LICENSE file. 11054 // BSD-style license that can be found in the LICENSE file.
11057 11055
11058 typedef bool RequestAnimationFrameCallback(int time); 11056 typedef bool RequestAnimationFrameCallback(int time);
11059 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 11057 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
11060 // for details. All rights reserved. Use of this source code is governed by a 11058 // for details. All rights reserved. Use of this source code is governed by a
11061 // BSD-style license that can be found in the LICENSE file. 11059 // BSD-style license that can be found in the LICENSE file.
11062 11060
11063 typedef void TimeoutHandler(); 11061 typedef void TimeoutHandler();
OLDNEW
« no previous file with comments | « no previous file | client/dom/generated/monkey_dom.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698