| 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: |
| 6 // This file contains documentation that is merged into the real source. |
| 7 // Do not make code changes here. |
| 8 |
| 9 /// @domName PerformanceTiming |
| 10 interface PerformanceTiming { |
| 11 |
| 12 /** @domName PerformanceTiming.connectEnd */ |
| 13 final int connectEnd; |
| 14 |
| 15 /** @domName PerformanceTiming.connectStart */ |
| 16 final int connectStart; |
| 17 |
| 18 /** @domName PerformanceTiming.domComplete */ |
| 19 final int domComplete; |
| 20 |
| 21 /** @domName PerformanceTiming.domContentLoadedEventEnd */ |
| 22 final int domContentLoadedEventEnd; |
| 23 |
| 24 /** @domName PerformanceTiming.domContentLoadedEventStart */ |
| 25 final int domContentLoadedEventStart; |
| 26 |
| 27 /** @domName PerformanceTiming.domInteractive */ |
| 28 final int domInteractive; |
| 29 |
| 30 /** @domName PerformanceTiming.domLoading */ |
| 31 final int domLoading; |
| 32 |
| 33 /** @domName PerformanceTiming.domainLookupEnd */ |
| 34 final int domainLookupEnd; |
| 35 |
| 36 /** @domName PerformanceTiming.domainLookupStart */ |
| 37 final int domainLookupStart; |
| 38 |
| 39 /** @domName PerformanceTiming.fetchStart */ |
| 40 final int fetchStart; |
| 41 |
| 42 /** @domName PerformanceTiming.loadEventEnd */ |
| 43 final int loadEventEnd; |
| 44 |
| 45 /** @domName PerformanceTiming.loadEventStart */ |
| 46 final int loadEventStart; |
| 47 |
| 48 /** @domName PerformanceTiming.navigationStart */ |
| 49 final int navigationStart; |
| 50 |
| 51 /** @domName PerformanceTiming.redirectEnd */ |
| 52 final int redirectEnd; |
| 53 |
| 54 /** @domName PerformanceTiming.redirectStart */ |
| 55 final int redirectStart; |
| 56 |
| 57 /** @domName PerformanceTiming.requestStart */ |
| 58 final int requestStart; |
| 59 |
| 60 /** @domName PerformanceTiming.responseEnd */ |
| 61 final int responseEnd; |
| 62 |
| 63 /** @domName PerformanceTiming.responseStart */ |
| 64 final int responseStart; |
| 65 |
| 66 /** @domName PerformanceTiming.secureConnectionStart */ |
| 67 final int secureConnectionStart; |
| 68 |
| 69 /** @domName PerformanceTiming.unloadEventEnd */ |
| 70 final int unloadEventEnd; |
| 71 |
| 72 /** @domName PerformanceTiming.unloadEventStart */ |
| 73 final int unloadEventStart; |
| 74 } |
| OLD | NEW |