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

Side by Side Diff: client/dom/generated/src/frog/ScriptProfileNode.dart

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class ScriptProfileNodeJs extends DOMTypeJs implements ScriptProfileNode native "*ScriptProfileNode" { 2 class _ScriptProfileNodeJs extends _DOMTypeJs implements ScriptProfileNode nativ e "*ScriptProfileNode" {
3 3
4 int get callUID() native "return this.callUID;"; 4 int get callUID() native "return this.callUID;";
5 5
6 List get children() native "return this.children;"; 6 List get children() native "return this.children;";
7 7
8 String get functionName() native "return this.functionName;"; 8 String get functionName() native "return this.functionName;";
9 9
10 int get lineNumber() native "return this.lineNumber;"; 10 int get lineNumber() native "return this.lineNumber;";
11 11
12 int get numberOfCalls() native "return this.numberOfCalls;"; 12 int get numberOfCalls() native "return this.numberOfCalls;";
13 13
14 num get selfTime() native "return this.selfTime;"; 14 num get selfTime() native "return this.selfTime;";
15 15
16 num get totalTime() native "return this.totalTime;"; 16 num get totalTime() native "return this.totalTime;";
17 17
18 String get url() native "return this.url;"; 18 String get url() native "return this.url;";
19 19
20 bool get visible() native "return this.visible;"; 20 bool get visible() native "return this.visible;";
21 } 21 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/ScriptProfile.dart ('k') | client/dom/generated/src/frog/ShadowRoot.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698