| Index: lib/dom/dom.dart
|
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
|
| index 51cd412c59d699f3f732b742900d559682faf49f..dd0d6e924de6d9ca9bf50ebf5c43965f02c507f9 100644
|
| --- a/lib/dom/dom.dart
|
| +++ b/lib/dom/dom.dart
|
| @@ -1274,13 +1274,13 @@ interface Console {
|
|
|
| void assertCondition(bool condition, Object arg);
|
|
|
| - void count();
|
| + void count(Object arg);
|
|
|
| void debug(Object arg);
|
|
|
| - void dir();
|
| + void dir(Object arg);
|
|
|
| - void dirxml();
|
| + void dirxml(Object arg);
|
|
|
| void error(Object arg);
|
|
|
| @@ -1294,7 +1294,7 @@ interface Console {
|
|
|
| void log(Object arg);
|
|
|
| - void markTimeline();
|
| + void markTimeline(Object arg);
|
|
|
| void profile(String title);
|
|
|
|
|