2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-07-17 05:42:18 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
2018-11-06 18:07:27 +03:00
|
|
|
* https://w3c.github.io/hr-time/#sec-performance
|
|
|
|
* https://w3c.github.io/navigation-timing/#extensions-to-the-performance-interface
|
|
|
|
* https://w3c.github.io/performance-timeline/#extensions-to-the-performance-interface
|
|
|
|
* https://w3c.github.io/resource-timing/#sec-extensions-performance-interface
|
|
|
|
* https://w3c.github.io/user-timing/#extensions-performance-interface
|
2012-07-17 05:42:18 +04:00
|
|
|
*
|
2015-11-19 17:04:47 +03:00
|
|
|
* Copyright © 2015 W3C® (MIT, ERCIM, Keio, Beihang).
|
|
|
|
* W3C liability, trademark and document use rules apply.
|
2012-07-17 05:42:18 +04:00
|
|
|
*/
|
|
|
|
|
2012-11-28 00:32:05 +04:00
|
|
|
typedef double DOMHighResTimeStamp;
|
2013-10-16 05:35:44 +04:00
|
|
|
typedef sequence <PerformanceEntry> PerformanceEntryList;
|
2012-07-17 05:42:18 +04:00
|
|
|
|
2018-11-06 18:07:27 +03:00
|
|
|
// https://w3c.github.io/hr-time/#sec-performance
|
2014-08-30 03:50:06 +04:00
|
|
|
[Exposed=(Window,Worker)]
|
2018-01-24 09:33:49 +03:00
|
|
|
interface Performance : EventTarget {
|
2015-01-16 01:39:01 +03:00
|
|
|
[DependsOn=DeviceState, Affects=Nothing]
|
2012-11-28 00:32:05 +04:00
|
|
|
DOMHighResTimeStamp now();
|
2016-11-17 12:00:05 +03:00
|
|
|
|
|
|
|
[Constant]
|
|
|
|
readonly attribute DOMHighResTimeStamp timeOrigin;
|
2018-11-06 18:07:27 +03:00
|
|
|
|
|
|
|
[Default] object toJSON();
|
2014-08-30 03:50:06 +04:00
|
|
|
};
|
2012-07-17 05:42:18 +04:00
|
|
|
|
2018-11-06 18:07:27 +03:00
|
|
|
// https://w3c.github.io/navigation-timing/#extensions-to-the-performance-interface
|
2014-08-30 03:50:06 +04:00
|
|
|
[Exposed=Window]
|
|
|
|
partial interface Performance {
|
2012-12-26 02:00:15 +04:00
|
|
|
[Constant]
|
2012-07-17 05:42:18 +04:00
|
|
|
readonly attribute PerformanceTiming timing;
|
2012-12-26 02:00:15 +04:00
|
|
|
[Constant]
|
2012-07-17 05:42:18 +04:00
|
|
|
readonly attribute PerformanceNavigation navigation;
|
|
|
|
};
|
2013-10-16 05:35:44 +04:00
|
|
|
|
2018-11-06 18:07:27 +03:00
|
|
|
// https://w3c.github.io/performance-timeline/#extensions-to-the-performance-interface
|
2015-05-25 19:53:07 +03:00
|
|
|
[Exposed=(Window,Worker)]
|
2013-10-16 05:35:44 +04:00
|
|
|
partial interface Performance {
|
|
|
|
PerformanceEntryList getEntries();
|
|
|
|
PerformanceEntryList getEntriesByType(DOMString entryType);
|
|
|
|
PerformanceEntryList getEntriesByName(DOMString name, optional DOMString
|
|
|
|
entryType);
|
|
|
|
};
|
|
|
|
|
2018-11-06 18:07:27 +03:00
|
|
|
// https://w3c.github.io/resource-timing/#sec-extensions-performance-interface
|
2018-01-24 19:17:32 +03:00
|
|
|
[Exposed=(Window,Worker)]
|
2013-10-16 05:35:44 +04:00
|
|
|
partial interface Performance {
|
|
|
|
void clearResourceTimings();
|
|
|
|
void setResourceTimingBufferSize(unsigned long maxSize);
|
2014-05-10 06:12:06 +04:00
|
|
|
attribute EventHandler onresourcetimingbufferfull;
|
2013-10-16 05:35:44 +04:00
|
|
|
};
|
2015-02-04 08:46:23 +03:00
|
|
|
|
2015-03-23 22:19:52 +03:00
|
|
|
// GC microbenchmarks, pref-guarded, not for general use (bug 1125412)
|
|
|
|
[Exposed=Window]
|
|
|
|
partial interface Performance {
|
|
|
|
[Pref="dom.enable_memory_stats"]
|
|
|
|
readonly attribute object mozMemory;
|
|
|
|
};
|
|
|
|
|
2018-11-06 18:07:27 +03:00
|
|
|
// https://w3c.github.io/user-timing/#extensions-performance-interface
|
2015-05-25 19:53:07 +03:00
|
|
|
[Exposed=(Window,Worker)]
|
2015-02-04 08:46:23 +03:00
|
|
|
partial interface Performance {
|
2017-03-07 10:50:40 +03:00
|
|
|
[Throws]
|
2015-02-04 08:46:23 +03:00
|
|
|
void mark(DOMString markName);
|
|
|
|
void clearMarks(optional DOMString markName);
|
2017-03-07 10:50:40 +03:00
|
|
|
[Throws]
|
2015-02-04 08:46:23 +03:00
|
|
|
void measure(DOMString measureName, optional DOMString startMark, optional DOMString endMark);
|
|
|
|
void clearMeasures(optional DOMString measureName);
|
|
|
|
};
|