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

Side by Side Diff: client/html/generated/html/dartium/Console.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (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
2 class _ConsoleImpl extends _DOMTypeBase implements Console {
3 _ConsoleImpl._wrap(ptr) : super._wrap(ptr);
4
5 MemoryInfo get memory() => _wrap(_ptr.memory);
6
7 List get profiles() => _wrap(_ptr.profiles);
8
9 void assertCondition(bool condition, Object arg) {
10 _ptr.assertCondition(_unwrap(condition), _unwrap(arg));
11 return;
12 }
13
14 void count() {
15 _ptr.count();
16 return;
17 }
18
19 void debug(Object arg) {
20 _ptr.debug(_unwrap(arg));
21 return;
22 }
23
24 void dir() {
25 _ptr.dir();
26 return;
27 }
28
29 void dirxml() {
30 _ptr.dirxml();
31 return;
32 }
33
34 void error(Object arg) {
35 _ptr.error(_unwrap(arg));
36 return;
37 }
38
39 void group(Object arg) {
40 _ptr.group(_unwrap(arg));
41 return;
42 }
43
44 void groupCollapsed(Object arg) {
45 _ptr.groupCollapsed(_unwrap(arg));
46 return;
47 }
48
49 void groupEnd() {
50 _ptr.groupEnd();
51 return;
52 }
53
54 void info(Object arg) {
55 _ptr.info(_unwrap(arg));
56 return;
57 }
58
59 void log(Object arg) {
60 _ptr.log(_unwrap(arg));
61 return;
62 }
63
64 void markTimeline() {
65 _ptr.markTimeline();
66 return;
67 }
68
69 void profile(String title) {
70 _ptr.profile(_unwrap(title));
71 return;
72 }
73
74 void profileEnd(String title) {
75 _ptr.profileEnd(_unwrap(title));
76 return;
77 }
78
79 void time(String title) {
80 _ptr.time(_unwrap(title));
81 return;
82 }
83
84 void timeEnd(String title, Object arg) {
85 _ptr.timeEnd(_unwrap(title), _unwrap(arg));
86 return;
87 }
88
89 void timeStamp(Object arg) {
90 _ptr.timeStamp(_unwrap(arg));
91 return;
92 }
93
94 void trace(Object arg) {
95 _ptr.trace(_unwrap(arg));
96 return;
97 }
98
99 void warn(Object arg) {
100 _ptr.warn(_unwrap(arg));
101 return;
102 }
103 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698