| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 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. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName PerformanceTiming |
| 8 interface PerformanceTiming { |
| 9 |
| 10 /** @domName PerformanceTiming.connectEnd */ |
| 11 final int connectEnd; |
| 12 |
| 13 /** @domName PerformanceTiming.connectStart */ |
| 14 final int connectStart; |
| 15 |
| 16 /** @domName PerformanceTiming.domComplete */ |
| 17 final int domComplete; |
| 18 |
| 19 /** @domName PerformanceTiming.domContentLoadedEventEnd */ |
| 20 final int domContentLoadedEventEnd; |
| 21 |
| 22 /** @domName PerformanceTiming.domContentLoadedEventStart */ |
| 23 final int domContentLoadedEventStart; |
| 24 |
| 25 /** @domName PerformanceTiming.domInteractive */ |
| 26 final int domInteractive; |
| 27 |
| 28 /** @domName PerformanceTiming.domLoading */ |
| 29 final int domLoading; |
| 30 |
| 31 /** @domName PerformanceTiming.domainLookupEnd */ |
| 32 final int domainLookupEnd; |
| 33 |
| 34 /** @domName PerformanceTiming.domainLookupStart */ |
| 35 final int domainLookupStart; |
| 36 |
| 37 /** @domName PerformanceTiming.fetchStart */ |
| 38 final int fetchStart; |
| 39 |
| 40 /** @domName PerformanceTiming.loadEventEnd */ |
| 41 final int loadEventEnd; |
| 42 |
| 43 /** @domName PerformanceTiming.loadEventStart */ |
| 44 final int loadEventStart; |
| 45 |
| 46 /** @domName PerformanceTiming.navigationStart */ |
| 47 final int navigationStart; |
| 48 |
| 49 /** @domName PerformanceTiming.redirectEnd */ |
| 50 final int redirectEnd; |
| 51 |
| 52 /** @domName PerformanceTiming.redirectStart */ |
| 53 final int redirectStart; |
| 54 |
| 55 /** @domName PerformanceTiming.requestStart */ |
| 56 final int requestStart; |
| 57 |
| 58 /** @domName PerformanceTiming.responseEnd */ |
| 59 final int responseEnd; |
| 60 |
| 61 /** @domName PerformanceTiming.responseStart */ |
| 62 final int responseStart; |
| 63 |
| 64 /** @domName PerformanceTiming.secureConnectionStart */ |
| 65 final int secureConnectionStart; |
| 66 |
| 67 /** @domName PerformanceTiming.unloadEventEnd */ |
| 68 final int unloadEventEnd; |
| 69 |
| 70 /** @domName PerformanceTiming.unloadEventStart */ |
| 71 final int unloadEventStart; |
| 72 } |
| OLD | NEW |