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

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

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 PerformanceTiming native "*PerformanceTiming" { 2 class PerformanceTiming native "*PerformanceTiming" {
3 3
4 int connectEnd; 4 int get connectEnd() native "return this.connectEnd;";
5 5
6 int connectStart; 6 int get connectStart() native "return this.connectStart;";
7 7
8 int domComplete; 8 int get domComplete() native "return this.domComplete;";
9 9
10 int domContentLoadedEventEnd; 10 int get domContentLoadedEventEnd() native "return this.domContentLoadedEventEn d;";
11 11
12 int domContentLoadedEventStart; 12 int get domContentLoadedEventStart() native "return this.domContentLoadedEvent Start;";
13 13
14 int domInteractive; 14 int get domInteractive() native "return this.domInteractive;";
15 15
16 int domLoading; 16 int get domLoading() native "return this.domLoading;";
17 17
18 int domainLookupEnd; 18 int get domainLookupEnd() native "return this.domainLookupEnd;";
19 19
20 int domainLookupStart; 20 int get domainLookupStart() native "return this.domainLookupStart;";
21 21
22 int fetchStart; 22 int get fetchStart() native "return this.fetchStart;";
23 23
24 int loadEventEnd; 24 int get loadEventEnd() native "return this.loadEventEnd;";
25 25
26 int loadEventStart; 26 int get loadEventStart() native "return this.loadEventStart;";
27 27
28 int navigationStart; 28 int get navigationStart() native "return this.navigationStart;";
29 29
30 int redirectEnd; 30 int get redirectEnd() native "return this.redirectEnd;";
31 31
32 int redirectStart; 32 int get redirectStart() native "return this.redirectStart;";
33 33
34 int requestStart; 34 int get requestStart() native "return this.requestStart;";
35 35
36 int responseEnd; 36 int get responseEnd() native "return this.responseEnd;";
37 37
38 int responseStart; 38 int get responseStart() native "return this.responseStart;";
39 39
40 int secureConnectionStart; 40 int get secureConnectionStart() native "return this.secureConnectionStart;";
41 41
42 int unloadEventEnd; 42 int get unloadEventEnd() native "return this.unloadEventEnd;";
43 43
44 int unloadEventStart; 44 int get unloadEventStart() native "return this.unloadEventStart;";
45 45
46 var dartObjectLocalStorage; 46 var dartObjectLocalStorage;
47 47
48 String get typeName() native; 48 String get typeName() native;
49 } 49 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/PerformanceNavigation.dart ('k') | client/dom/generated/src/frog/PointerLock.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698