| Index: client/dom/generated/src/wrapping/_ConsoleWrappingImplementation.dart
|
| diff --git a/client/dom/generated/src/wrapping/_ConsoleWrappingImplementation.dart b/client/dom/generated/src/wrapping/_ConsoleWrappingImplementation.dart
|
| index 469bbaf1ee87db7aa21bd1ce1e2651a0eab2846e..9f540c25a1fe8adb1c74b21711ad417910d5f7c7 100644
|
| --- a/client/dom/generated/src/wrapping/_ConsoleWrappingImplementation.dart
|
| +++ b/client/dom/generated/src/wrapping/_ConsoleWrappingImplementation.dart
|
| @@ -14,6 +14,9 @@ class _ConsoleWrappingImplementation extends DOMWrapperBase implements Console {
|
| MemoryInfo get memory() { return _get_memory(this); }
|
| static MemoryInfo _get_memory(var _this) native;
|
|
|
| + List get profiles() { return _get_profiles(this); }
|
| + static List _get_profiles(var _this) native;
|
| +
|
| void assert(bool condition) {
|
| _assert(this, condition);
|
| return;
|
| @@ -86,6 +89,18 @@ class _ConsoleWrappingImplementation extends DOMWrapperBase implements Console {
|
| }
|
| static void _markTimeline(receiver) native;
|
|
|
| + void profile(String title) {
|
| + _profile(this, title);
|
| + return;
|
| + }
|
| + static void _profile(receiver, title) native;
|
| +
|
| + void profileEnd(String title) {
|
| + _profileEnd(this, title);
|
| + return;
|
| + }
|
| + static void _profileEnd(receiver, title) native;
|
| +
|
| void time(String title) {
|
| _time(this, title);
|
| return;
|
|
|