| 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 interface PerformanceTiming { | |
| 8 | |
| 9 final int connectEnd; | |
| 10 | |
| 11 final int connectStart; | |
| 12 | |
| 13 final int domComplete; | |
| 14 | |
| 15 final int domContentLoadedEventEnd; | |
| 16 | |
| 17 final int domContentLoadedEventStart; | |
| 18 | |
| 19 final int domInteractive; | |
| 20 | |
| 21 final int domLoading; | |
| 22 | |
| 23 final int domainLookupEnd; | |
| 24 | |
| 25 final int domainLookupStart; | |
| 26 | |
| 27 final int fetchStart; | |
| 28 | |
| 29 final int loadEventEnd; | |
| 30 | |
| 31 final int loadEventStart; | |
| 32 | |
| 33 final int navigationStart; | |
| 34 | |
| 35 final int redirectEnd; | |
| 36 | |
| 37 final int redirectStart; | |
| 38 | |
| 39 final int requestStart; | |
| 40 | |
| 41 final int responseEnd; | |
| 42 | |
| 43 final int responseStart; | |
| 44 | |
| 45 final int secureConnectionStart; | |
| 46 | |
| 47 final int unloadEventEnd; | |
| 48 | |
| 49 final int unloadEventStart; | |
| 50 } | |
| OLD | NEW |