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

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

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface PerformanceTiming { 7 interface PerformanceTiming {
8 8
9 int get connectEnd(); 9 final int connectEnd;
10 10
11 int get connectStart(); 11 final int connectStart;
12 12
13 int get domComplete(); 13 final int domComplete;
14 14
15 int get domContentLoadedEventEnd(); 15 final int domContentLoadedEventEnd;
16 16
17 int get domContentLoadedEventStart(); 17 final int domContentLoadedEventStart;
18 18
19 int get domInteractive(); 19 final int domInteractive;
20 20
21 int get domLoading(); 21 final int domLoading;
22 22
23 int get domainLookupEnd(); 23 final int domainLookupEnd;
24 24
25 int get domainLookupStart(); 25 final int domainLookupStart;
26 26
27 int get fetchStart(); 27 final int fetchStart;
28 28
29 int get loadEventEnd(); 29 final int loadEventEnd;
30 30
31 int get loadEventStart(); 31 final int loadEventStart;
32 32
33 int get navigationStart(); 33 final int navigationStart;
34 34
35 int get redirectEnd(); 35 final int redirectEnd;
36 36
37 int get redirectStart(); 37 final int redirectStart;
38 38
39 int get requestStart(); 39 final int requestStart;
40 40
41 int get responseEnd(); 41 final int responseEnd;
42 42
43 int get responseStart(); 43 final int responseStart;
44 44
45 int get secureConnectionStart(); 45 final int secureConnectionStart;
46 46
47 int get unloadEventEnd(); 47 final int unloadEventEnd;
48 48
49 int get unloadEventStart(); 49 final int unloadEventStart;
50 } 50 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698