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

Unified 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, 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 side-by-side diff with in-line comments
Download patch
Index: client/html/generated/html/dartium/Console.dart
diff --git a/client/html/generated/html/dartium/Console.dart b/client/html/generated/html/dartium/Console.dart
new file mode 100644
index 0000000000000000000000000000000000000000..00c32ca7dadd35ada45c1897d667a3743484afde
--- /dev/null
+++ b/client/html/generated/html/dartium/Console.dart
@@ -0,0 +1,103 @@
+
+class _ConsoleImpl extends _DOMTypeBase implements Console {
+ _ConsoleImpl._wrap(ptr) : super._wrap(ptr);
+
+ MemoryInfo get memory() => _wrap(_ptr.memory);
+
+ List get profiles() => _wrap(_ptr.profiles);
+
+ void assertCondition(bool condition, Object arg) {
+ _ptr.assertCondition(_unwrap(condition), _unwrap(arg));
+ return;
+ }
+
+ void count() {
+ _ptr.count();
+ return;
+ }
+
+ void debug(Object arg) {
+ _ptr.debug(_unwrap(arg));
+ return;
+ }
+
+ void dir() {
+ _ptr.dir();
+ return;
+ }
+
+ void dirxml() {
+ _ptr.dirxml();
+ return;
+ }
+
+ void error(Object arg) {
+ _ptr.error(_unwrap(arg));
+ return;
+ }
+
+ void group(Object arg) {
+ _ptr.group(_unwrap(arg));
+ return;
+ }
+
+ void groupCollapsed(Object arg) {
+ _ptr.groupCollapsed(_unwrap(arg));
+ return;
+ }
+
+ void groupEnd() {
+ _ptr.groupEnd();
+ return;
+ }
+
+ void info(Object arg) {
+ _ptr.info(_unwrap(arg));
+ return;
+ }
+
+ void log(Object arg) {
+ _ptr.log(_unwrap(arg));
+ return;
+ }
+
+ void markTimeline() {
+ _ptr.markTimeline();
+ return;
+ }
+
+ void profile(String title) {
+ _ptr.profile(_unwrap(title));
+ return;
+ }
+
+ void profileEnd(String title) {
+ _ptr.profileEnd(_unwrap(title));
+ return;
+ }
+
+ void time(String title) {
+ _ptr.time(_unwrap(title));
+ return;
+ }
+
+ void timeEnd(String title, Object arg) {
+ _ptr.timeEnd(_unwrap(title), _unwrap(arg));
+ return;
+ }
+
+ void timeStamp(Object arg) {
+ _ptr.timeStamp(_unwrap(arg));
+ return;
+ }
+
+ void trace(Object arg) {
+ _ptr.trace(_unwrap(arg));
+ return;
+ }
+
+ void warn(Object arg) {
+ _ptr.warn(_unwrap(arg));
+ return;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698