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

Side by Side Diff: client/html/generated/src/wrapping/_ConsoleWrappingImplementation.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 // 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._wrap(ptr) : super._wrap(ptr) {}
9
10 void count() {
11 _ptr.count();
12 return;
13 }
14
15 void debug(Object arg) {
16 _ptr.debug(LevelDom.unwrapMaybePrimitive(arg));
17 return;
18 }
19
20 void dir() {
21 _ptr.dir();
22 return;
23 }
24
25 void dirxml() {
26 _ptr.dirxml();
27 return;
28 }
29
30 void error(Object arg) {
31 _ptr.error(LevelDom.unwrapMaybePrimitive(arg));
32 return;
33 }
34
35 void group() {
36 _ptr.group();
37 return;
38 }
39
40 void groupCollapsed() {
41 _ptr.groupCollapsed();
42 return;
43 }
44
45 void groupEnd() {
46 _ptr.groupEnd();
47 return;
48 }
49
50 void info(Object arg) {
51 _ptr.info(LevelDom.unwrapMaybePrimitive(arg));
52 return;
53 }
54
55 void log(Object arg) {
56 _ptr.log(LevelDom.unwrapMaybePrimitive(arg));
57 return;
58 }
59
60 void markTimeline() {
61 _ptr.markTimeline();
62 return;
63 }
64
65 void time(String title) {
66 _ptr.time(title);
67 return;
68 }
69
70 void timeEnd(String title) {
71 _ptr.timeEnd(title);
72 return;
73 }
74
75 void timeStamp() {
76 _ptr.timeStamp();
77 return;
78 }
79
80 void trace(Object arg) {
81 _ptr.trace(LevelDom.unwrapMaybePrimitive(arg));
82 return;
83 }
84
85 void warn(Object arg) {
86 _ptr.warn(LevelDom.unwrapMaybePrimitive(arg));
87 return;
88 }
89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698