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

Unified Diff: lib/html/dartium/html_dartium.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
« lib/dom/scripts/dartgenerator.py ('K') | « lib/html/dart2js/html_dart2js.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 4aebdf4d2da178ffd44112ba5bb00c7898b0c61b..6b15e1edf9ef25132d521c094dec64d7d07d3e50 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -4431,13 +4431,13 @@ class _ConsoleImpl extends NativeFieldWrapperClass1 implements Console {
void assertCondition(bool condition, Object arg) native "Console_assertCondition_Callback";
- void count() native "Console_count_Callback";
+ void count(Object arg) native "Console_count_Callback";
void debug(Object arg) native "Console_debug_Callback";
- void dir() native "Console_dir_Callback";
+ void dir(Object arg) native "Console_dir_Callback";
- void dirxml() native "Console_dirxml_Callback";
+ void dirxml(Object arg) native "Console_dirxml_Callback";
void error(Object arg) native "Console_error_Callback";
@@ -4451,7 +4451,7 @@ class _ConsoleImpl extends NativeFieldWrapperClass1 implements Console {
void log(Object arg) native "Console_log_Callback";
- void markTimeline() native "Console_markTimeline_Callback";
+ void markTimeline(Object arg) native "Console_markTimeline_Callback";
void profile(String title) native "Console_profile_Callback";
@@ -25672,16 +25672,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);
@@ -25702,7 +25702,7 @@ interface Console {
void log(Object arg);
/** @domName Console.markTimeline */
- void markTimeline();
+ void markTimeline(Object arg);
/** @domName Console.profile */
void profile(String title);
« lib/dom/scripts/dartgenerator.py ('K') | « lib/html/dart2js/html_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698