OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2010 Google Inc. All rights reserved. | 2 * Copyright (C) 2010 Google Inc. All rights reserved. |
3 * Copyright (C) 2012 Intel Inc. All rights reserved. | 3 * Copyright (C) 2012 Intel Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 13 matching lines...) Expand all Loading... |
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 // See: http://dev.w3.org/2006/webapi/WebTiming/ | 32 // See: http://dev.w3.org/2006/webapi/WebTiming/ |
33 [ | 33 [ |
| 34 NoInterfaceObject, |
34 EventTarget, | 35 EventTarget, |
35 ] interface Performance { | 36 ] interface Performance { |
36 readonly attribute PerformanceNavigation navigation; | 37 readonly attribute PerformanceNavigation navigation; |
37 readonly attribute PerformanceTiming timing; | 38 readonly attribute PerformanceTiming timing; |
38 readonly attribute MemoryInfo memory; | 39 readonly attribute MemoryInfo memory; |
39 | 40 |
40 sequence<PerformanceEntry> webkitGetEntries(); | 41 sequence<PerformanceEntry> webkitGetEntries(); |
41 sequence<PerformanceEntry> webkitGetEntriesByType(DOMString entryType); | 42 sequence<PerformanceEntry> webkitGetEntriesByType(DOMString entryType); |
42 sequence<PerformanceEntry> webkitGetEntriesByName(DOMString name, [Default=N
ullString] optional DOMString entryType); | 43 sequence<PerformanceEntry> webkitGetEntriesByName(DOMString name, [Default=N
ullString] optional DOMString entryType); |
43 | 44 |
44 void webkitClearResourceTimings(); | 45 void webkitClearResourceTimings(); |
45 void webkitSetResourceTimingBufferSize(unsigned long maxSize); | 46 void webkitSetResourceTimingBufferSize(unsigned long maxSize); |
46 | 47 |
47 attribute EventListener onwebkitresourcetimingbufferfull; | 48 attribute EventListener onwebkitresourcetimingbufferfull; |
48 | 49 |
49 // See http://www.w3.org/TR/2012/CR-user-timing-20120726/ | 50 // See http://www.w3.org/TR/2012/CR-user-timing-20120726/ |
50 [RaisesException] void webkitMark(DOMString markName); | 51 [RaisesException] void webkitMark(DOMString markName); |
51 void webkitClearMarks([Default=NullString] optional DOMString markName); | 52 void webkitClearMarks([Default=NullString] optional DOMString markName); |
52 | 53 |
53 [RaisesException] void webkitMeasure(DOMString measureName, [Default=NullStr
ing] optional DOMString startMark, [Default=NullString] optional DOMString endMa
rk); | 54 [RaisesException] void webkitMeasure(DOMString measureName, [Default=NullStr
ing] optional DOMString startMark, [Default=NullString] optional DOMString endMa
rk); |
54 void webkitClearMeasures([Default=NullString] optional DOMString measureName
); | 55 void webkitClearMeasures([Default=NullString] optional DOMString measureName
); |
55 | 56 |
56 // See http://www.w3.org/TR/hr-time/ for details. | 57 // See http://www.w3.org/TR/hr-time/ for details. |
57 double now(); | 58 double now(); |
58 }; | 59 }; |
59 | 60 |
OLD | NEW |