| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // BSD-style license that can be found in the LICENSE file. | |
| 4 | |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 class _PerformanceTimingWrappingImplementation extends DOMWrapperBase implements
PerformanceTiming { | |
| 8 _PerformanceTimingWrappingImplementation() : super() {} | |
| 9 | |
| 10 static create__PerformanceTimingWrappingImplementation() native { | |
| 11 return new _PerformanceTimingWrappingImplementation(); | |
| 12 } | |
| 13 | |
| 14 int get connectEnd() { return _get_connectEnd(this); } | |
| 15 static int _get_connectEnd(var _this) native; | |
| 16 | |
| 17 int get connectStart() { return _get_connectStart(this); } | |
| 18 static int _get_connectStart(var _this) native; | |
| 19 | |
| 20 int get domComplete() { return _get_domComplete(this); } | |
| 21 static int _get_domComplete(var _this) native; | |
| 22 | |
| 23 int get domContentLoadedEventEnd() { return _get_domContentLoadedEventEnd(this
); } | |
| 24 static int _get_domContentLoadedEventEnd(var _this) native; | |
| 25 | |
| 26 int get domContentLoadedEventStart() { return _get_domContentLoadedEventStart(
this); } | |
| 27 static int _get_domContentLoadedEventStart(var _this) native; | |
| 28 | |
| 29 int get domInteractive() { return _get_domInteractive(this); } | |
| 30 static int _get_domInteractive(var _this) native; | |
| 31 | |
| 32 int get domLoading() { return _get_domLoading(this); } | |
| 33 static int _get_domLoading(var _this) native; | |
| 34 | |
| 35 int get domainLookupEnd() { return _get_domainLookupEnd(this); } | |
| 36 static int _get_domainLookupEnd(var _this) native; | |
| 37 | |
| 38 int get domainLookupStart() { return _get_domainLookupStart(this); } | |
| 39 static int _get_domainLookupStart(var _this) native; | |
| 40 | |
| 41 int get fetchStart() { return _get_fetchStart(this); } | |
| 42 static int _get_fetchStart(var _this) native; | |
| 43 | |
| 44 int get loadEventEnd() { return _get_loadEventEnd(this); } | |
| 45 static int _get_loadEventEnd(var _this) native; | |
| 46 | |
| 47 int get loadEventStart() { return _get_loadEventStart(this); } | |
| 48 static int _get_loadEventStart(var _this) native; | |
| 49 | |
| 50 int get navigationStart() { return _get_navigationStart(this); } | |
| 51 static int _get_navigationStart(var _this) native; | |
| 52 | |
| 53 int get redirectEnd() { return _get_redirectEnd(this); } | |
| 54 static int _get_redirectEnd(var _this) native; | |
| 55 | |
| 56 int get redirectStart() { return _get_redirectStart(this); } | |
| 57 static int _get_redirectStart(var _this) native; | |
| 58 | |
| 59 int get requestStart() { return _get_requestStart(this); } | |
| 60 static int _get_requestStart(var _this) native; | |
| 61 | |
| 62 int get responseEnd() { return _get_responseEnd(this); } | |
| 63 static int _get_responseEnd(var _this) native; | |
| 64 | |
| 65 int get responseStart() { return _get_responseStart(this); } | |
| 66 static int _get_responseStart(var _this) native; | |
| 67 | |
| 68 int get secureConnectionStart() { return _get_secureConnectionStart(this); } | |
| 69 static int _get_secureConnectionStart(var _this) native; | |
| 70 | |
| 71 int get unloadEventEnd() { return _get_unloadEventEnd(this); } | |
| 72 static int _get_unloadEventEnd(var _this) native; | |
| 73 | |
| 74 int get unloadEventStart() { return _get_unloadEventStart(this); } | |
| 75 static int _get_unloadEventStart(var _this) native; | |
| 76 | |
| 77 String get typeName() { return "PerformanceTiming"; } | |
| 78 } | |
| OLD | NEW |