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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 nativ e "*ScriptProfileNode" { 2 class _ScriptProfileNodeJs extends _DOMTypeJs implements ScriptProfileNode nativ e "*ScriptProfileNode" {
3 3
4 int get callUID() native "return this.callUID;"; 4 final int callUID;
5 5
6 List get children() native "return this.children;"; 6 final List children;
7 7
8 String get functionName() native "return this.functionName;"; 8 final String functionName;
9 9
10 int get lineNumber() native "return this.lineNumber;"; 10 final int lineNumber;
11 11
12 int get numberOfCalls() native "return this.numberOfCalls;"; 12 final int numberOfCalls;
13 13
14 num get selfTime() native "return this.selfTime;"; 14 final num selfTime;
15 15
16 num get totalTime() native "return this.totalTime;"; 16 final num totalTime;
17 17
18 String get url() native "return this.url;"; 18 final String url;
19 19
20 bool get visible() native "return this.visible;"; 20 final bool visible;
21 } 21 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698