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

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

Issue 8825013: Custom native class spec for Console. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: rebase 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 | no next file » | 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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after
822 class Comment extends CharacterData native "*Comment" { 822 class Comment extends CharacterData native "*Comment" {
823 } 823 }
824 824
825 class CompositionEvent extends UIEvent native "*CompositionEvent" { 825 class CompositionEvent extends UIEvent native "*CompositionEvent" {
826 826
827 String data; 827 String data;
828 828
829 void initCompositionEvent(String typeArg, bool canBubbleArg, bool cancelableAr g, DOMWindow viewArg, String dataArg) native; 829 void initCompositionEvent(String typeArg, bool canBubbleArg, bool cancelableAr g, DOMWindow viewArg, String dataArg) native;
830 } 830 }
831 831
832 class Console native "*Console" { 832 class Console native "=console" {
833 833
834 MemoryInfo memory; 834 MemoryInfo memory;
835 835
836 void assert(bool condition) native; 836 void assert(bool condition) native;
837 837
838 void count() native; 838 void count() native;
839 839
840 void debug(Object arg) native; 840 void debug(Object arg) native;
841 841
842 void dir() native; 842 void dir() native;
(...skipping 10209 matching lines...) Expand 10 before | Expand all | Expand 10 after
11052 // 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
11053 // 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
11054 // BSD-style license that can be found in the LICENSE file. 11054 // BSD-style license that can be found in the LICENSE file.
11055 11055
11056 typedef bool RequestAnimationFrameCallback(int time); 11056 typedef bool RequestAnimationFrameCallback(int time);
11057 // 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
11058 // 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
11059 // BSD-style license that can be found in the LICENSE file. 11059 // BSD-style license that can be found in the LICENSE file.
11060 11060
11061 typedef void TimeoutHandler(); 11061 typedef void TimeoutHandler();
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698