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

Unified Diff: lib/html/dart2js/html_dart2js.dart

Issue 10821012: Autogenerate additional arguments for fanky methods. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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:
Download patch
Index: lib/html/dart2js/html_dart2js.dart
diff --git a/lib/html/dart2js/html_dart2js.dart b/lib/html/dart2js/html_dart2js.dart
index ffc9a45cdb3a8b5405047813c6eb1b306a04de17..df7b34db9c80214049749f09eaea94a4f33baa55 100644
--- a/lib/html/dart2js/html_dart2js.dart
+++ b/lib/html/dart2js/html_dart2js.dart
@@ -4056,13 +4056,13 @@ class _ConsoleImpl
void assertCondition(bool condition, Object arg) native;
- void count() native;
+ void count(Object arg) native;
void debug(Object arg) native;
- void dir() native;
+ void dir(Object arg) native;
- void dirxml() native;
+ void dirxml(Object arg) native;
void error(Object arg) native;
@@ -4076,7 +4076,7 @@ class _ConsoleImpl
void log(Object arg) native;
- void markTimeline() native;
+ void markTimeline(Object arg) native;
void profile(String title) native;
@@ -21738,16 +21738,16 @@ interface Console {
void assertCondition(bool condition, Object arg);
/** @domName Console.count */
- void count();
+ void count(Object arg);
/** @domName Console.debug */
void debug(Object arg);
/** @domName Console.dir */
- void dir();
+ void dir(Object arg);
/** @domName Console.dirxml */
- void dirxml();
+ void dirxml(Object arg);
/** @domName Console.error */
void error(Object arg);
@@ -21768,7 +21768,7 @@ interface Console {
void log(Object arg);
/** @domName Console.markTimeline */
- void markTimeline();
+ void markTimeline(Object arg);
/** @domName Console.profile */
void profile(String title);

Powered by Google App Engine
This is Rietveld 408576698