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

Unified Diff: client/dom/templates/html/frog/impl_Console.darttemplate

Issue 9403004: Wrapperless dart:html generator (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Final version to check in. changes generator script but doesn't check in an active version of the … 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/dom/templates/html/frog/impl_Console.darttemplate
diff --git a/client/dom/templates/html/frog/impl_Console.darttemplate b/client/dom/templates/html/frog/impl_Console.darttemplate
index 8a41b1d1245e00742ac3a7c3a076397c285b27c1..d0c0b5d64ac5e8cb2bc40e09c554c56232a6a515 100644
--- a/client/dom/templates/html/frog/impl_Console.darttemplate
+++ b/client/dom/templates/html/frog/impl_Console.darttemplate
@@ -3,13 +3,8 @@
// BSD-style license that can be found in the LICENSE file.
class $CLASSNAME
- // Implement DOMType directly. Console is sometimes a singleton
- // bag-of-properties without a prototype, so it can't inherit from
- // DOMTypeJs.
- implements Console, DOMType
+ // Console is sometimes a singleton bag-of-properties without a prototype.
+ implements Console
native "=(typeof console == 'undefined' ? {} : console)" {
$!MEMBERS
-
- // Keep these in sync with frog_DOMTypeJs.dart.
- String get typeName() native;
}

Powered by Google App Engine
This is Rietveld 408576698