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

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

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING: Do not edit - generated code.
6
7 class _ConsoleWrappingImplementation extends DOMWrapperBase implements Console {
8 _ConsoleWrappingImplementation() : super() {}
9
10 static create__ConsoleWrappingImplementation() native {
11 return new _ConsoleWrappingImplementation();
12 }
13
14 MemoryInfo get memory() { return _get_memory(this); }
15 static MemoryInfo _get_memory(var _this) native;
16
17 List get profiles() { return _get_profiles(this); }
18 static List _get_profiles(var _this) native;
19
20 void assertCondition(bool condition, Object arg) {
21 _assertCondition(this, condition, arg);
22 return;
23 }
24 static void _assertCondition(receiver, condition, arg) native;
25
26 void count() {
27 _count(this);
28 return;
29 }
30 static void _count(receiver) native;
31
32 void debug(Object arg) {
33 _debug(this, arg);
34 return;
35 }
36 static void _debug(receiver, arg) native;
37
38 void dir() {
39 _dir(this);
40 return;
41 }
42 static void _dir(receiver) native;
43
44 void dirxml() {
45 _dirxml(this);
46 return;
47 }
48 static void _dirxml(receiver) native;
49
50 void error(Object arg) {
51 _error(this, arg);
52 return;
53 }
54 static void _error(receiver, arg) native;
55
56 void group(Object arg) {
57 _group(this, arg);
58 return;
59 }
60 static void _group(receiver, arg) native;
61
62 void groupCollapsed(Object arg) {
63 _groupCollapsed(this, arg);
64 return;
65 }
66 static void _groupCollapsed(receiver, arg) native;
67
68 void groupEnd() {
69 _groupEnd(this);
70 return;
71 }
72 static void _groupEnd(receiver) native;
73
74 void info(Object arg) {
75 _info(this, arg);
76 return;
77 }
78 static void _info(receiver, arg) native;
79
80 void log(Object arg) {
81 _log(this, arg);
82 return;
83 }
84 static void _log(receiver, arg) native;
85
86 void markTimeline() {
87 _markTimeline(this);
88 return;
89 }
90 static void _markTimeline(receiver) native;
91
92 void profile(String title) {
93 _profile(this, title);
94 return;
95 }
96 static void _profile(receiver, title) native;
97
98 void profileEnd(String title) {
99 _profileEnd(this, title);
100 return;
101 }
102 static void _profileEnd(receiver, title) native;
103
104 void time(String title) {
105 _time(this, title);
106 return;
107 }
108 static void _time(receiver, title) native;
109
110 void timeEnd(String title, Object arg) {
111 _timeEnd(this, title, arg);
112 return;
113 }
114 static void _timeEnd(receiver, title, arg) native;
115
116 void timeStamp(Object arg) {
117 _timeStamp(this, arg);
118 return;
119 }
120 static void _timeStamp(receiver, arg) native;
121
122 void trace(Object arg) {
123 _trace(this, arg);
124 return;
125 }
126 static void _trace(receiver, arg) native;
127
128 void warn(Object arg) {
129 _warn(this, arg);
130 return;
131 }
132 static void _warn(receiver, arg) native;
133
134 String get typeName() { return "Console"; }
135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698