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

Unified Diff: client/dom/generated/src/wrapping/_ConsoleWrappingImplementation.dart

Issue 8895013: Add enables consistent with Chrome's WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Alpha the ENABLEs Created 9 years 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/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;

Powered by Google App Engine
This is Rietveld 408576698