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

Unified 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, 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/src/wrapping/_ConsoleWrappingImplementation.dart
diff --git a/client/html/generated/src/wrapping/_ConsoleWrappingImplementation.dart b/client/html/generated/src/wrapping/_ConsoleWrappingImplementation.dart
deleted file mode 100644
index 550e733f090c1e676077c4c0c81b8b155663cb86..0000000000000000000000000000000000000000
--- a/client/html/generated/src/wrapping/_ConsoleWrappingImplementation.dart
+++ /dev/null
@@ -1,89 +0,0 @@
-// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// WARNING: Do not edit - generated code.
-
-class ConsoleWrappingImplementation extends DOMWrapperBase implements Console {
- ConsoleWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
-
- void count() {
- _ptr.count();
- return;
- }
-
- void debug(Object arg) {
- _ptr.debug(LevelDom.unwrapMaybePrimitive(arg));
- return;
- }
-
- void dir() {
- _ptr.dir();
- return;
- }
-
- void dirxml() {
- _ptr.dirxml();
- return;
- }
-
- void error(Object arg) {
- _ptr.error(LevelDom.unwrapMaybePrimitive(arg));
- return;
- }
-
- void group() {
- _ptr.group();
- return;
- }
-
- void groupCollapsed() {
- _ptr.groupCollapsed();
- return;
- }
-
- void groupEnd() {
- _ptr.groupEnd();
- return;
- }
-
- void info(Object arg) {
- _ptr.info(LevelDom.unwrapMaybePrimitive(arg));
- return;
- }
-
- void log(Object arg) {
- _ptr.log(LevelDom.unwrapMaybePrimitive(arg));
- return;
- }
-
- void markTimeline() {
- _ptr.markTimeline();
- return;
- }
-
- void time(String title) {
- _ptr.time(title);
- return;
- }
-
- void timeEnd(String title) {
- _ptr.timeEnd(title);
- return;
- }
-
- void timeStamp() {
- _ptr.timeStamp();
- return;
- }
-
- void trace(Object arg) {
- _ptr.trace(LevelDom.unwrapMaybePrimitive(arg));
- return;
- }
-
- void warn(Object arg) {
- _ptr.warn(LevelDom.unwrapMaybePrimitive(arg));
- return;
- }
-}

Powered by Google App Engine
This is Rietveld 408576698