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

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

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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 ScriptProfileNode native "*ScriptProfileNode" { 2 class ScriptProfileNodeJS implements ScriptProfileNode native "*ScriptProfileNod e" {
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
22 var dartObjectLocalStorage; 22 var dartObjectLocalStorage;
23 23
24 String get typeName() native; 24 String get typeName() native;
25 } 25 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/ScriptProfile.dart ('k') | client/dom/generated/src/frog/SharedWorker.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698