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

Side by Side Diff: client/dom/generated/src/wrapping/_ConsoleWrappingImplementation.dart

Issue 9422008: Regenerate frog dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _ConsoleWrappingImplementation extends DOMWrapperBase implements Console { 7 class _ConsoleWrappingImplementation extends DOMWrapperBase implements Console {
8 _ConsoleWrappingImplementation() : super() {} 8 _ConsoleWrappingImplementation() : super() {}
9 9
10 static create__ConsoleWrappingImplementation() native { 10 static create__ConsoleWrappingImplementation() native {
11 return new _ConsoleWrappingImplementation(); 11 return new _ConsoleWrappingImplementation();
12 } 12 }
13 13
14 MemoryInfo get memory() { return _get_memory(this); } 14 MemoryInfo get memory() { return _get_memory(this); }
15 static MemoryInfo _get_memory(var _this) native; 15 static MemoryInfo _get_memory(var _this) native;
16 16
17 List get profiles() { return _get_profiles(this); } 17 List get profiles() { return _get_profiles(this); }
18 static List _get_profiles(var _this) native; 18 static List _get_profiles(var _this) native;
19 19
20 void assertCondition(bool condition) { 20 void assertCondition(bool condition, Object arg) {
21 _assertCondition(this, condition); 21 _assertCondition(this, condition, arg);
22 return; 22 return;
23 } 23 }
24 static void _assertCondition(receiver, condition) native; 24 static void _assertCondition(receiver, condition, arg) native;
25 25
26 void count() { 26 void count() {
27 _count(this); 27 _count(this);
28 return; 28 return;
29 } 29 }
30 static void _count(receiver) native; 30 static void _count(receiver) native;
31 31
32 void debug(Object arg) { 32 void debug(Object arg) {
33 _debug(this, arg); 33 _debug(this, arg);
34 return; 34 return;
(...skipping 11 matching lines...) Expand all
46 return; 46 return;
47 } 47 }
48 static void _dirxml(receiver) native; 48 static void _dirxml(receiver) native;
49 49
50 void error(Object arg) { 50 void error(Object arg) {
51 _error(this, arg); 51 _error(this, arg);
52 return; 52 return;
53 } 53 }
54 static void _error(receiver, arg) native; 54 static void _error(receiver, arg) native;
55 55
56 void group() { 56 void group(Object arg) {
57 _group(this); 57 _group(this, arg);
58 return; 58 return;
59 } 59 }
60 static void _group(receiver) native; 60 static void _group(receiver, arg) native;
61 61
62 void groupCollapsed() { 62 void groupCollapsed(Object arg) {
63 _groupCollapsed(this); 63 _groupCollapsed(this, arg);
64 return; 64 return;
65 } 65 }
66 static void _groupCollapsed(receiver) native; 66 static void _groupCollapsed(receiver, arg) native;
67 67
68 void groupEnd() { 68 void groupEnd() {
69 _groupEnd(this); 69 _groupEnd(this);
70 return; 70 return;
71 } 71 }
72 static void _groupEnd(receiver) native; 72 static void _groupEnd(receiver) native;
73 73
74 void info(Object arg) { 74 void info(Object arg) {
75 _info(this, arg); 75 _info(this, arg);
76 return; 76 return;
(...skipping 23 matching lines...) Expand all
100 return; 100 return;
101 } 101 }
102 static void _profileEnd(receiver, title) native; 102 static void _profileEnd(receiver, title) native;
103 103
104 void time(String title) { 104 void time(String title) {
105 _time(this, title); 105 _time(this, title);
106 return; 106 return;
107 } 107 }
108 static void _time(receiver, title) native; 108 static void _time(receiver, title) native;
109 109
110 void timeEnd(String title) { 110 void timeEnd(String title, Object arg) {
111 _timeEnd(this, title); 111 _timeEnd(this, title, arg);
112 return; 112 return;
113 } 113 }
114 static void _timeEnd(receiver, title) native; 114 static void _timeEnd(receiver, title, arg) native;
115 115
116 void timeStamp() { 116 void timeStamp(Object arg) {
117 _timeStamp(this); 117 _timeStamp(this, arg);
118 return; 118 return;
119 } 119 }
120 static void _timeStamp(receiver) native; 120 static void _timeStamp(receiver, arg) native;
121 121
122 void trace(Object arg) { 122 void trace(Object arg) {
123 _trace(this, arg); 123 _trace(this, arg);
124 return; 124 return;
125 } 125 }
126 static void _trace(receiver, arg) native; 126 static void _trace(receiver, arg) native;
127 127
128 void warn(Object arg) { 128 void warn(Object arg) {
129 _warn(this, arg); 129 _warn(this, arg);
130 return; 130 return;
131 } 131 }
132 static void _warn(receiver, arg) native; 132 static void _warn(receiver, arg) native;
133 133
134 String get typeName() { return "Console"; } 134 String get typeName() { return "Console"; }
135 } 135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698