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

Unified Diff: sdk/lib/html/dartium/html_dartium.dart

Issue 14249008: Enable profiling IDLs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/idl/dart/dart.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/html/dartium/html_dartium.dart
diff --git a/sdk/lib/html/dartium/html_dartium.dart b/sdk/lib/html/dartium/html_dartium.dart
index dd0de2703be0f393892c19a89c9701644549ac19..7d2ebddd263877e259a61a8a651330e8e6ee7e9e 100644
--- a/sdk/lib/html/dartium/html_dartium.dart
+++ b/sdk/lib/html/dartium/html_dartium.dart
@@ -2118,6 +2118,10 @@ class Console extends NativeFieldWrapperClass1 {
@DocsEditable
MemoryInfo get memory native "Console_memory_Getter";
+ @DomName('Console.profiles')
+ @DocsEditable
+ List<ScriptProfile> get profiles native "Console_profiles_Getter";
+
@DomName('Console.assertCondition')
@DocsEditable
void assertCondition(bool condition, Object arg) native "Console_assertCondition_Callback";
@@ -21465,6 +21469,84 @@ class ScriptElement extends _Element_Merged {
@DocsEditable
+@DomName('ScriptProfile')
+class ScriptProfile extends NativeFieldWrapperClass1 {
+ ScriptProfile.internal();
+
+ @DomName('ScriptProfile.head')
+ @DocsEditable
+ ScriptProfileNode get head native "ScriptProfile_head_Getter";
+
+ @DomName('ScriptProfile.idleTime')
+ @DocsEditable
+ num get idleTime native "ScriptProfile_idleTime_Getter";
+
+ @DomName('ScriptProfile.title')
+ @DocsEditable
+ String get title native "ScriptProfile_title_Getter";
+
+ @DomName('ScriptProfile.uid')
+ @DocsEditable
+ int get uid native "ScriptProfile_uid_Getter";
+
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
+
+@DocsEditable
+@DomName('ScriptProfileNode')
+class ScriptProfileNode extends NativeFieldWrapperClass1 {
+ ScriptProfileNode.internal();
+
+ @DomName('ScriptProfileNode.callUID')
+ @DocsEditable
+ int get callUid native "ScriptProfileNode_callUID_Getter";
+
+ @DomName('ScriptProfileNode.functionName')
+ @DocsEditable
+ String get functionName native "ScriptProfileNode_functionName_Getter";
+
+ @DomName('ScriptProfileNode.lineNumber')
+ @DocsEditable
+ int get lineNumber native "ScriptProfileNode_lineNumber_Getter";
+
+ @DomName('ScriptProfileNode.numberOfCalls')
+ @DocsEditable
+ int get numberOfCalls native "ScriptProfileNode_numberOfCalls_Getter";
+
+ @DomName('ScriptProfileNode.selfTime')
+ @DocsEditable
+ num get selfTime native "ScriptProfileNode_selfTime_Getter";
+
+ @DomName('ScriptProfileNode.totalTime')
+ @DocsEditable
+ num get totalTime native "ScriptProfileNode_totalTime_Getter";
+
+ @DomName('ScriptProfileNode.url')
+ @DocsEditable
+ String get url native "ScriptProfileNode_url_Getter";
+
+ @DomName('ScriptProfileNode.visible')
+ @DocsEditable
+ bool get visible native "ScriptProfileNode_visible_Getter";
+
+ @DomName('ScriptProfileNode.children')
+ @DocsEditable
+ List<ScriptProfileNode> children() native "ScriptProfileNode_children_Callback";
+
+}
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+// WARNING: Do not edit - generated code.
+
+
+@DocsEditable
@DomName('SecurityPolicyViolationEvent')
class SecurityPolicyViolationEvent extends Event {
SecurityPolicyViolationEvent.internal() : super.internal();
« no previous file with comments | « sdk/lib/html/dart2js/html_dart2js.dart ('k') | tools/dom/idl/dart/dart.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698