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

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

Issue 8935001: Mark VoidCallback as a [Callback] (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 | « client/dom/dom.dart ('k') | client/dom/frog_dom.dart » ('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 9471 matching lines...) Expand 10 before | Expand all | Expand 10 after
9482 9482
9483 bool valid; 9483 bool valid;
9484 9484
9485 bool valueMissing; 9485 bool valueMissing;
9486 9486
9487 var dartObjectLocalStorage; 9487 var dartObjectLocalStorage;
9488 9488
9489 String get typeName() native; 9489 String get typeName() native;
9490 } 9490 }
9491 9491
9492 class VoidCallback native "*VoidCallback" {
9493
9494 void handleEvent() native;
9495
9496 var dartObjectLocalStorage;
9497
9498 String get typeName() native;
9499 }
9500
9501 class WaveShaperNode extends AudioNode native "*WaveShaperNode" { 9492 class WaveShaperNode extends AudioNode native "*WaveShaperNode" {
9502 9493
9503 Float32Array curve; 9494 Float32Array curve;
9504 } 9495 }
9505 9496
9506 class WebGLActiveInfo native "*WebGLActiveInfo" { 9497 class WebGLActiveInfo native "*WebGLActiveInfo" {
9507 9498
9508 String name; 9499 String name;
9509 9500
9510 int size; 9501 int size;
(...skipping 1812 matching lines...) Expand 10 before | Expand all | Expand 10 after
11323 // for details. All rights reserved. Use of this source code is governed by a 11314 // for details. All rights reserved. Use of this source code is governed by a
11324 // BSD-style license that can be found in the LICENSE file. 11315 // BSD-style license that can be found in the LICENSE file.
11325 11316
11326 // WARNING: Do not edit - generated code. 11317 // WARNING: Do not edit - generated code.
11327 11318
11328 typedef bool StringCallback(String data); 11319 typedef bool StringCallback(String data);
11329 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 11320 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
11330 // for details. All rights reserved. Use of this source code is governed by a 11321 // for details. All rights reserved. Use of this source code is governed by a
11331 // BSD-style license that can be found in the LICENSE file. 11322 // BSD-style license that can be found in the LICENSE file.
11332 11323
11324 // WARNING: Do not edit - generated code.
11325
11326 typedef void VoidCallback();
11327 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
11328 // for details. All rights reserved. Use of this source code is governed by a
11329 // BSD-style license that can be found in the LICENSE file.
11330
11333 typedef void EventListener(Event event); 11331 typedef void EventListener(Event event);
11334 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 11332 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
11335 // for details. All rights reserved. Use of this source code is governed by a 11333 // for details. All rights reserved. Use of this source code is governed by a
11336 // BSD-style license that can be found in the LICENSE file. 11334 // BSD-style license that can be found in the LICENSE file.
11337 11335
11338 /** 11336 /**
11339 * Defines the standard key locations returned by 11337 * Defines the standard key locations returned by
11340 * KeyboardEvent.getKeyLocation. 11338 * KeyboardEvent.getKeyLocation.
11341 */ 11339 */
11342 interface KeyLocation { 11340 interface KeyLocation {
(...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after
11997 startIndex = a.length - 1; 11995 startIndex = a.length - 1;
11998 } 11996 }
11999 for (int i = startIndex; i >= 0; i--) { 11997 for (int i = startIndex; i >= 0; i--) {
12000 if (a[i] == element) { 11998 if (a[i] == element) {
12001 return i; 11999 return i;
12002 } 12000 }
12003 } 12001 }
12004 return -1; 12002 return -1;
12005 } 12003 }
12006 } 12004 }
OLDNEW
« no previous file with comments | « client/dom/dom.dart ('k') | client/dom/frog_dom.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698